Add initial eslint config
This commit is contained in:
Родитель
1b0da44f38
Коммит
ad3376b9dc
|
@ -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"
|
||||||
|
}
|
Загрузка…
Ссылка в новой задаче