generated from ulivz/ts-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
executable file
·31 lines (31 loc) · 1.08 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module.exports = {
extends: ["@speedy-js/eslint-config/ts", "plugin:prettier/recommended"],
rules: {
"max-len": ["error", { code: 300 }],
"import/export": "off",
"arrow-body-style": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"no-useless-constructor": "off",
"no-use-before-define": "off",
"import/no-unassigned-import": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-namespace": "off",
"no-shadow": "off",
"no-new-func": "off",
"financial/no-division": "off",
"@typescript-eslint/no-empty-function": "off",
"no-throw-literal": "off",
"func-names": "off",
"prefer-rest-params": "off",
"no-case-declarations": "off",
"guard-for-in": "off",
"no-loop-func": "off",
"financial/no-float-calculation": "off",
},
};