mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-12-22 12:50:36 +01:00
25 lines
578 B
JSON
25 lines
578 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", "function"]
|
|
}
|
|
} |