1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-02 20:30:27 +00:00
foris-js/.eslintrc.js

67 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-08-21 15:04:26 +00:00
const path = require("path");
module.exports = {
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"extends": [
"airbnb",
"airbnb/hooks"
],
"globals": {
"_": "readonly",
"babel": "readonly",
"ForisTranslations": "readonly",
"ngettext": "readonly",
"ForisPlugins": "readonly"
},
"parser": "babel-eslint",
"rules": {
"quotes": ["error", "double"],
"indent": ["error", 4],
"react/jsx-indent": ["error", 4],
"react/jsx-indent-props": ["error", 4],
"react/prop-types": "warn",
"react/no-array-index-key": "warn",
"react/button-has-type": "warn",
2019-08-27 15:46:45 +00:00
"import/prefer-default-export": "off",
2019-08-21 15:04:26 +00:00
"import/no-unresolved": [
"error",
// Ignore imports used only in tests
2019-08-29 09:46:13 +00:00
{ ignore: ["customTestRender"] }
2019-08-21 15:04:26 +00:00
],
"import/no-cycle": "warn",
"no-console": "error",
2019-08-27 15:46:45 +00:00
"no-use-before-define": ["error", {
functions: false,
classes: true,
variables: true
}],
2019-08-21 15:04:26 +00:00
"no-restricted-syntax": "warn",
// Should be enabled in the future
"camelcase": "off",
"no-param-reassign": "off",
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"react/default-props-match-prop-types": "off",
"react/forbid-prop-types": "off",
// Permanently disabled
"react/jsx-filename-extension": "off",
"no-plusplus": "off",
"consistent-return": "off",
"radix": "off",
"no-continue": "off",
"react/no-danger": "off",
},
"settings": {
"import/resolver": {
2019-08-27 14:09:18 +00:00
"node": {
"paths": ["src"]
2019-08-21 15:04:26 +00:00
}
}
}
2019-08-23 13:20:22 +00:00
};