Skip to content

Commit

Permalink
eslint setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rav1kantsingh committed Feb 26, 2020
1 parent b174d1a commit 1e132cd
Show file tree
Hide file tree
Showing 4 changed files with 884 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"env": {
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"extends": ["eslint:recommended"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"strict": ["error", "never"]
}
}
Loading

0 comments on commit 1e132cd

Please sign in to comment.