Skip to content

Commit

Permalink
chore: add eslint and fix files to adapt to it
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdouglas committed Jun 21, 2020
1 parent 73580c7 commit 74797ed
Show file tree
Hide file tree
Showing 11 changed files with 1,086 additions and 39 deletions.
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
dist
coverage
./data
requirements
.vscode
18 changes: 18 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"env": {
"browser": true,
"es2020": true,
"jest": true
},
"extends": "airbnb-base",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"semi": "off",
"arrow-parens": "off",
"implicit-arrow-linebreak": "off",
"no-confusing-arrow": "off"
}
}
Loading

0 comments on commit 74797ed

Please sign in to comment.