mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
25 lines
578 B
JSON
25 lines
578 B
JSON
{
|
|
"extends": [
|
|
"@abhijithvijayan/eslint-config",
|
|
"@abhijithvijayan/eslint-config/node"
|
|
],
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-extend-native": "off",
|
|
"class-methods-use-this": "off",
|
|
"max-classes-per-file": "off",
|
|
"node/no-unpublished-require": "off",
|
|
"node/no-missing-import": "off",
|
|
"node/no-unpublished-import": "off",
|
|
"node/no-unsupported-features/es-syntax": ["error", {
|
|
"ignores": ["modules"]
|
|
}]
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"webextensions": true
|
|
}
|
|
} |