-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
43 lines (43 loc) · 916 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
37
38
39
40
41
42
43
{
"env": {
"jest": true
},
"extends": [
"@folio/eslint-config-stripes"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"import",
"react",
"@typescript-eslint"
],
"overrides": [
{
"files": [
"**/test/**/*",
"**/**/*.test.ts",
"src/**/*.test.tsx"
]
}
],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-use-before-define": [
"error"
],
"@typescript-eslint/ban-ts-comment": "off",
"import/extensions": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-explicit-any": 0
}
}