Skip to content

Commit

Permalink
Adding eslint to the whole project
Browse files Browse the repository at this point in the history
  • Loading branch information
arielhad committed Oct 24, 2020
1 parent 094546b commit 8a3dd45
Show file tree
Hide file tree
Showing 10 changed files with 1,376 additions and 71 deletions.
21 changes: 21 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"env": {
"browser": true,
"es2021": true,
"mocha": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true,
"classes": true,
"arrowFunctions": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react"],
"rules": {}
}
Loading

0 comments on commit 8a3dd45

Please sign in to comment.