mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
23 lines
422 B
JSON
23 lines
422 B
JSON
{
|
|
"root": true,
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"webextensions": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"rules": {
|
|
"no-console": 0,
|
|
"no-unused-vars": ["warn", { "vars": "all", "args": "all" } ],
|
|
"no-undef": ["warn"],
|
|
"no-proto": ["error"],
|
|
"prefer-arrow-callback": ["warn"],
|
|
"prefer-spread": ["warn"]
|
|
}
|
|
}
|