fix: eslint config

This commit is contained in:
abhijithvijayan 2020-11-15 16:30:38 +05:30
parent 166a989a79
commit 9f21036e4e

View File

@ -1,10 +1,25 @@
{
"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
},
"extends": [
"@abhijithvijayan/eslint-config"
],
"rules": {}
}
}