wallet-core/.eslintrc.js

30 lines
971 B
JavaScript
Raw Normal View History

module.exports = {
root: true,
2020-04-06 20:02:01 +02:00
parser: "@typescript-eslint/parser",
2022-03-29 04:41:30 +02:00
plugins: ["import","@typescript-eslint"],
extends: [
2020-04-06 20:02:01 +02:00
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
],
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 },
],
2022-03-29 04:41:30 +02:00
"import/extensions": ["error", "ignorePackages"],
2020-04-06 20:02:01 +02:00
},
};