wallet-core/.eslintrc.js

30 lines
922 B
JavaScript
Raw Normal View History

module.exports = {
root: true,
2020-04-06 20:02:01 +02:00
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
extends: [
2020-04-06 20:02:01 +02:00
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
2021-05-07 15:38:28 +02:00
"preact",
],
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",
"@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 },
],
},
};