Skip to content

Commit

Permalink
Chore/Updating all dev packages and adding Prettier (#14)
Browse files Browse the repository at this point in the history
* Chore: updating packages

* Chore: "equal" was deprecated. Using "strictEqual" instead

* Feat: adding Prettier
  • Loading branch information
gabrielfurini authored Dec 18, 2020
1 parent 9947183 commit 4d13503
Show file tree
Hide file tree
Showing 5 changed files with 1,157 additions and 673 deletions.
20 changes: 9 additions & 11 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
module.exports = {
"extends": "airbnb-base",
"env": {
"node": true,
"mocha": true
extends: ['airbnb-base', 'prettier'],
env: {
node: true,
mocha: true,
},
"rules": {
"semi": [
2,
"never"
],
}
};
rules: {
semi: [2, 'never'],
quotes: [2, 'single', { avoidEscape: true }],
},
}
Loading

0 comments on commit 4d13503

Please sign in to comment.