2020-04-06 17:35:51 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
2020-04-06 20:02:01 +02:00
|
|
|
parser: "@typescript-eslint/parser",
|
|
|
|
plugins: ["@typescript-eslint"],
|
2020-04-06 17:35:51 +02:00
|
|
|
extends: [
|
2020-04-06 20:02:01 +02:00
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:react/recommended",
|
2020-04-07 10:07:32 +02:00
|
|
|
"plugin:react-hooks/recommended",
|
2020-04-06 17:35:51 +02:00
|
|
|
],
|
2020-04-06 21:53:29 +02:00
|
|
|
settings: {
|
|
|
|
"react": {
|
|
|
|
"version": "16.9.6",
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
2020-04-06 20:02:01 +02:00
|
|
|
rules: {
|
|
|
|
"no-constant-condition": ["error", { "checkLoops": false }],
|
|
|
|
"prefer-const": ["warn", { destructuring: "all" }],
|
2020-04-07 10:28:55 +02:00
|
|
|
"no-prototype-builtins": "off",
|
2020-04-06 20:02:01 +02:00
|
|
|
"@typescript-eslint/camelcase": "off",
|
2020-04-07 10:07:32 +02:00
|
|
|
"@typescript-eslint/ban-ts-ignore": "off",
|
2020-04-06 20:02:01 +02:00
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
2020-07-17 14:30:34 +02:00
|
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
2020-04-06 20:02:01 +02:00
|
|
|
"@typescript-eslint/no-unused-vars": ["warn", { args: "none" }],
|
|
|
|
"@typescript-eslint/explicit-function-return-type": [
|
|
|
|
"warn",
|
|
|
|
{ allowExpressions: true },
|
|
|
|
],
|
|
|
|
"@typescript-eslint/no-use-before-define": [
|
|
|
|
"error",
|
|
|
|
{ functions: false, classes: false },
|
|
|
|
],
|
|
|
|
},
|
2020-04-06 17:35:51 +02:00
|
|
|
};
|