-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc
36 lines (36 loc) · 917 Bytes
/
.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
{
"parser": "@typescript-eslint/parser",
"extends": [
"./node_modules/kcd-scripts/eslint.js",
"plugin:import/typescript"
],
"plugins": ["@typescript-eslint"],
"rules": {
"babel/new-cap": "off",
"func-names": "off",
"babel/no-unused-expressions": "off",
"prefer-arrow-callback": "off",
"testing-library/no-await-sync-query": "off",
"testing-library/no-dom-import": "off",
"testing-library/prefer-screen-queries": "off",
"no-undef": "off",
"no-use-before-define": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }
],
"max-lines-per-function": "off",
"consistent-return": "off",
"jest/no-if": "off",
"one-var": "off"
},
"overrides": [
{
"files": ["*.test.ts"],
"rules": {
"max-lines": "off"
}
}
]
}