Skip to content

Commit

Permalink
added eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainpolletvillard committed Jun 2, 2017
1 parent 2a35b6c commit 5bb95e8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,24 @@
{
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2015,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab",
{ "SwitchCase": 1 }
],
"no-mixed-spaces-and-tabs": [
"error",
"smart-tabs"
],
"no-console": "off"
}
}

0 comments on commit 5bb95e8

Please sign in to comment.