mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
27 lines
509 B
JSON
27 lines
509 B
JSON
{
|
|
"root": true,
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true,
|
|
"node": true,
|
|
"webextensions": true
|
|
},
|
|
"globals": {
|
|
"globalThis": false
|
|
},
|
|
"extends": ["eslint:recommended"],
|
|
"overrides": [],
|
|
|
|
"rules": {
|
|
"no-console": 0,
|
|
"no-unused-vars": ["warn", { "vars": "all", "args": "after-used" }],
|
|
"no-undef": ["warn"],
|
|
"no-proto": ["error"],
|
|
"prefer-arrow-callback": ["warn"],
|
|
"prefer-spread": ["warn"]
|
|
}
|
|
}
|