fix: eslint config

This commit is contained in:
abhijithvijayan 2020-11-15 15:59:16 +05:30
parent 1217c2d142
commit 5f9cf77500

View File

@ -1,13 +1,25 @@
{ {
"extends": [ "extends": [
"@abhijithvijayan/eslint-config", "@abhijithvijayan/eslint-config",
"@abhijithvijayan/eslint-config/node",
"@abhijithvijayan/eslint-config/react" "@abhijithvijayan/eslint-config/react"
], ],
"parserOptions": {
"sourceType": "module"
},
"rules": { "rules": {
"no-console": "off", "no-console": "off",
"no-extend-native": "off", "no-extend-native": "off",
"react/jsx-props-no-spreading": "off", "react/jsx-props-no-spreading": "off",
"jsx-a11y/label-has-associated-control": "off" "jsx-a11y/label-has-associated-control": "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": { "env": {
"webextensions": true "webextensions": true