-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
61 lines (61 loc) · 1.25 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
51
52
53
54
55
56
57
58
59
60
61
{
"env": {
"es2024": true
},
"extends": [
"love",
"eslint:recommended",
"preact",
"@unocss",
"plugin:@tanstack/eslint-plugin-query/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:security/recommended-legacy"
],
"ignorePatterns": [
"build/",
"dist/"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"unicorn",
"simple-import-sort",
"unused-imports",
"react"
],
"root": true,
"rules": {
"react/jsx-curly-brace-presence": [
"error",
{
"props": "never",
"children": "never",
"propElementValues": "always"
}
],
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"jsx-quotes": [
"error",
"prefer-single"
],
"indent": [
"error",
2
],
"object-curly-spacing": [
"error",
"always"
],
"@typescript-eslint/object-curly-spacing": "error"
}
}