This commit is contained in:
Kevin Sawicki 2016-01-15 13:37:03 -08:00
Родитель 1b0da44f38
Коммит ad3376b9dc
1 изменённых файлов: 37 добавлений и 0 удалений

37
.eslintrc.json Normal file
Просмотреть файл

@ -0,0 +1,37 @@
{
"rules": {
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"comma-dangle": 0,
"indent": 0,
"no-console": 0,
"no-undef": 0,
"no-unreachable": 0,
"no-unused-vars": 0,
"quotes": 0,
"semi": 0
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": "eslint:recommended"
}