1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-06 05:17:49 +02:00
CanvasBlocker/.eslintrc.json
2017-09-24 00:11:16 +02:00

25 lines
564 B
JSON

{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"webextensions": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "script"
},
"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",
"brace-style": "warn",
"strict": "warn"
}
}