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.
34 lines
623 B
34 lines
623 B
{
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-const-assign": "warn",
|
|
"no-this-before-super": "warn",
|
|
"no-undef": "warn",
|
|
"no-unreachable": "warn",
|
|
"no-unused-vars": "warn",
|
|
"constructor-super": "warn",
|
|
"valid-typeof": "warn",
|
|
"semi": [
|
|
"warn",
|
|
"never"
|
|
],
|
|
"quotes": [
|
|
"warn",
|
|
"single"
|
|
],
|
|
"arrow-parens": 0,
|
|
"generator-star-spacing": 0,
|
|
"space-before-function-paren": 0
|
|
}
|
|
}
|