forked from Karibash/storybook-addon-swc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
50 lines (50 loc) · 1.26 KB
/
.eslintrc.json
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
47
48
49
50
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"standard",
"standard-with-typescript",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"yoda": "off",
"semi": ["error", "always"],
"comma-dangle": ["error", "always-multiline"],
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/semi": ["error", "always"],
"@typescript-eslint/comma-dangle": ["error", "always-multiline"],
"@typescript-eslint/space-before-function-paren": ["error", "never"],
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/triple-slash-reference": ["error", {
"types": "prefer-import"
}],
"@typescript-eslint/member-delimiter-style": ["error", {
"multiline": {
"delimiter": "semi",
"requireLast": true
},
"singleline": {
"delimiter": "semi",
"requireLast": false
}
}]
},
"env": {
"node": true
},
"overrides": [
{
"files": [
"*.test.{js,jsx,ts,tsx}",
"**/__tests__/**"
],
"env": {
"jest": true
}
}
]
}