Skip to content

Commit

Permalink
Add eslint. Issue vinitshahdeo#1
Browse files Browse the repository at this point in the history
Adding eslint to package.json
  • Loading branch information
Camiila23 committed Oct 14, 2019
1 parent 4498c27 commit 2d5fe6d
Show file tree
Hide file tree
Showing 3 changed files with 1,330 additions and 11 deletions.
23 changes: 23 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
}
};
Loading

0 comments on commit 2d5fe6d

Please sign in to comment.