Skip to content

Commit

Permalink
Refactoring the whole app
Browse files Browse the repository at this point in the history
  • Loading branch information
fabien-renaud committed Feb 3, 2021
1 parent c45dbfa commit 91aa10a
Show file tree
Hide file tree
Showing 62 changed files with 7,388 additions and 1,127 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/src/messages
13 changes: 13 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": ["node", "prettier"],
"plugins": ["prettier"],
"settings": {
"import/resolver": {
"node": {"extensions": [".js"]}
}
},
"rules": {
"import/prefer-default-export": "off",
"prettier/prettier": ["error"]
}
}
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.env
.idea
*.bat
/lib
/node_modules
package-lock.json
lib
6 changes: 6 additions & 0 deletions .huskyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"hooks": {
"pre-commit": "npm run test",
"pre-push": "npm run test"
}
}
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/src/messages
18 changes: 18 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "always",
"requirePragma": false,
"insertPragma": false,
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "ignore",
"endOfLine": "auto"
}
Loading

0 comments on commit 91aa10a

Please sign in to comment.