Skip to content

Commit

Permalink
Added Eslint as a dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ouifi committed Apr 20, 2021
1 parent 23bc4db commit 1ef2174
Show file tree
Hide file tree
Showing 3 changed files with 2,028 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"root": true,
"env":{
"node": true,
"es6": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"semi": "warn",
"no-unused-vars": "off"
},
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
}
}
Loading

0 comments on commit 1ef2174

Please sign in to comment.