plyr/.eslintrc.json
2017-10-02 21:03:51 +11:00

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"]
}
}