25 lines
550 B
JSON
25 lines
550 B
JSON
{
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"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",
|
|
"indent": [
|
|
"error",
|
|
4,
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"quotes": ["error", "single"],
|
|
"semi": ["error", "always"],
|
|
"eqeqeq": ["error", "always"]
|
|
}
|
|
}
|