wallet-core/.eslintrc.js

45 lines
1.2 KiB
JavaScript
Raw Normal View History

module.exports = {
root: true,
2020-04-06 20:02:01 +02:00
parser: "@typescript-eslint/parser",
2022-05-18 16:04:45 +02:00
plugins: ["import", "@typescript-eslint",
"react",
"react-hooks",
],
extends: [
2020-04-06 20:02:01 +02:00
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
],
settings: {
react: {
pragma: 'h',
version: '16.0'
}
},
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",
2022-05-18 16:04:45 +02:00
"@typescript-eslint/no-namespace": "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",
"@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 },
],
2022-03-29 04:41:30 +02:00
"import/extensions": ["error", "ignorePackages"],
"react/no-unknown-property": 0,
2022-05-18 16:04:45 +02:00
"react/prop-types": 0,
2020-04-06 20:02:01 +02:00
},
};