You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
426 B
35 lines
426 B
{ |
|
"env": { |
|
"browser": true, |
|
"node": true, |
|
"commonjs": true, |
|
"es6": true |
|
}, |
|
"extends": "eslint:recommended", |
|
"parserOptions": { |
|
"sourceType": "module" |
|
}, |
|
"rules": { |
|
"indent": [ |
|
"warn", |
|
4, |
|
{ |
|
"SwitchCase": 1 |
|
} |
|
], |
|
"quotes": [ |
|
"warn", |
|
"double" |
|
], |
|
"semi": [ |
|
"error", |
|
"always" |
|
], |
|
"no-undef": "error", |
|
"no-unused-vars": "warn", |
|
"eqeqeq": [ |
|
"error", |
|
"always" |
|
] |
|
} |
|
} |