Skip to content

Commit

Permalink
Create .eslint.json
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSkinny authored Jun 19, 2019
1 parent 4b9069e commit 8016959
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .eslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"mocha": true
},
"globals": {
"expect": true,
"supertest": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"parser": "babel-eslint",
"extends": "eslint:recommended",
"rules": {
"semi": 2
}
}

0 comments on commit 8016959

Please sign in to comment.