зеркало из https://github.com/mozilla/email-tabs.git
29 строки
582 B
JavaScript
29 строки
582 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"es6": true,
|
|
"webextensions": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:jsx-a11y/recommended",
|
|
"plugin:mozilla/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"jsx-a11y",
|
|
"mozilla"
|
|
],
|
|
"root": true,
|
|
"rules": {
|
|
"eqeqeq": "error",
|
|
"no-console": "warn",
|
|
"space-before-function-paren": "off",
|
|
"no-console": ["error", {"allow": ["error", "info", "trace", "warn"]}],
|
|
"react/prop-types": "off"
|
|
}
|
|
};
|