mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
This stops eslint from complaining when you use, for example `chrome.runtime.sendMessage`
16 lines
305 B
JSON
16 lines
305 B
JSON
{
|
|
"extends": [
|
|
"@abhijithvijayan/eslint-config/typescript",
|
|
"@abhijithvijayan/eslint-config/react"
|
|
],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-extend-native": "off",
|
|
"react/jsx-props-no-spreading": "off",
|
|
"jsx-a11y/label-has-associated-control": "off"
|
|
},
|
|
"env": {
|
|
"webextensions": true
|
|
}
|
|
}
|