mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 13:53:23 +00:00
35 lines
771 B
JSON
35 lines
771 B
JSON
{
|
|
"env": {
|
|
"webextensions": true
|
|
},
|
|
"extends": [
|
|
"@abhijithvijayan/eslint-config/typescript",
|
|
"@abhijithvijayan/eslint-config/node",
|
|
"@abhijithvijayan/eslint-config/react"
|
|
],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json",
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-shadow": ["error", {
|
|
"builtinGlobals": false,
|
|
"hoist": "functions",
|
|
"allow": []
|
|
}],
|
|
"react/jsx-props-no-spreading": "off",
|
|
"jsx-a11y/label-has-associated-control": "off",
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"react/no-array-index-key": "warn",
|
|
"node/no-unsupported-features/es-syntax": ["error", {
|
|
"ignores": ["modules"]
|
|
}]
|
|
},
|
|
"settings": {
|
|
"node": {
|
|
"tryExtensions": [".tsx"] // append tsx to the list as well
|
|
}
|
|
}
|
|
}
|