-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
46 lines (46 loc) · 1.33 KB
/
.eslintrc
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"root": true,
"extends": [
"eslint:recommended",
"airbnb",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"rules": {
"linebreak-style": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"import/no-extraneous-dependencies": "off",
"import/extensions": "off",
"implicit-arrow-linebreak": "off",
"no-confusing-arrow": "off",
"import/no-unresolved": "off",
"function-paren-newline": "off",
"operator-linebreak": "off",
"indent": "off",
"max-classes-per-file": "off",
"no-param-reassign": "off",
"no-nested-ternary": "off",
"import/no-cycle": "off",
"object-curly-newline": "off",
"lines-between-class-members": "off",
"react/function-component-definition": "off",
"react/jsx-filename-extension": "off",
"react/no-array-index-key": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-wrap-multilines": "off",
"react/jsx-curly-newline": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-props-no-spreading": "off"
},
"ignorePatterns": [
"src/**/*.test.ts",
"src/**/*.test.tsx",
"src/data/*.ts",
"public/data/**/*.json",
"cypress",
"scripts"
]
}