@empjs/biome-config 0.7.0 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/biome.jsonc +18 -6
- package/package.json +1 -1
package/biome.jsonc
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
3
3
|
"files": {
|
|
4
|
-
"ignore": [
|
|
4
|
+
"ignore": [
|
|
5
|
+
"dist/**",
|
|
6
|
+
"output/**",
|
|
7
|
+
"node_modules/**"
|
|
8
|
+
],
|
|
5
9
|
"ignoreUnknown": true,
|
|
6
10
|
"include": [
|
|
7
11
|
"*.js",
|
|
@@ -66,7 +70,8 @@
|
|
|
66
70
|
"noSvgWithoutTitle": "off",
|
|
67
71
|
"useAltText": "off",
|
|
68
72
|
"useButtonType": "off",
|
|
69
|
-
"useValidAnchor": "off"
|
|
73
|
+
"useValidAnchor": "off",
|
|
74
|
+
"useKeyWithClickEvents": "off"
|
|
70
75
|
},
|
|
71
76
|
"complexity": {
|
|
72
77
|
"noForEach": "off",
|
|
@@ -77,16 +82,18 @@
|
|
|
77
82
|
"noUselessTernary": "off"
|
|
78
83
|
},
|
|
79
84
|
"correctness": {
|
|
80
|
-
"noUnreachable": "off"
|
|
85
|
+
"noUnreachable": "off",
|
|
86
|
+
"useExhaustiveDependencies": "off"
|
|
81
87
|
},
|
|
82
88
|
"performance": {
|
|
83
89
|
"noDelete": "off"
|
|
84
90
|
},
|
|
85
91
|
"recommended": true,
|
|
86
92
|
"style": {
|
|
93
|
+
"noUnusedTemplateLiteral": "off",
|
|
94
|
+
"useSelfClosingElements": "off",
|
|
87
95
|
"noNonNullAssertion": "off",
|
|
88
96
|
"noParameterAssign": "off",
|
|
89
|
-
"noUnusedTemplateLiteral": "off",
|
|
90
97
|
"noUselessElse": "off",
|
|
91
98
|
"useNodejsImportProtocol": "off",
|
|
92
99
|
"useSingleVarDeclarator": "off",
|
|
@@ -94,6 +101,7 @@
|
|
|
94
101
|
},
|
|
95
102
|
"suspicious": {
|
|
96
103
|
"noAssignInExpressions": "off",
|
|
104
|
+
"noArrayIndexKey": "off",
|
|
97
105
|
"noDoubleEquals": "off",
|
|
98
106
|
"noExplicitAny": "off",
|
|
99
107
|
"noGlobalIsNan": "off",
|
|
@@ -106,7 +114,11 @@
|
|
|
106
114
|
},
|
|
107
115
|
"overrides": [
|
|
108
116
|
{
|
|
109
|
-
"include": [
|
|
117
|
+
"include": [
|
|
118
|
+
"*.svelte",
|
|
119
|
+
"*.astro",
|
|
120
|
+
"*.vue"
|
|
121
|
+
],
|
|
110
122
|
"linter": {
|
|
111
123
|
"rules": {
|
|
112
124
|
"style": {
|
|
@@ -122,4 +134,4 @@
|
|
|
122
134
|
"enabled": true,
|
|
123
135
|
"useIgnoreFile": true
|
|
124
136
|
}
|
|
125
|
-
}
|
|
137
|
+
}
|