@raviqqe/biome-config 2.0.14 → 2.0.16
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.json +6 -2
- package/package.json +1 -1
package/biome.json
CHANGED
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
},
|
|
116
116
|
"overrides": [
|
|
117
117
|
{
|
|
118
|
-
"includes": ["**/*.config.js", "**/*.config.ts"],
|
|
118
|
+
"includes": ["**/*.config.js", "**/*.config.ts", "**/*.d.ts"],
|
|
119
119
|
"linter": {
|
|
120
120
|
"rules": {
|
|
121
121
|
"style": {
|
|
@@ -130,6 +130,9 @@
|
|
|
130
130
|
"rules": {
|
|
131
131
|
"style": {
|
|
132
132
|
"noNonNullAssertion": "off"
|
|
133
|
+
},
|
|
134
|
+
"suspicious": {
|
|
135
|
+
"useErrorMessage": "off"
|
|
133
136
|
}
|
|
134
137
|
}
|
|
135
138
|
}
|
|
@@ -139,7 +142,8 @@
|
|
|
139
142
|
"linter": {
|
|
140
143
|
"rules": {
|
|
141
144
|
"correctness": {
|
|
142
|
-
"noUnusedImports": "off"
|
|
145
|
+
"noUnusedImports": "off",
|
|
146
|
+
"noUnusedVariables": "off"
|
|
143
147
|
}
|
|
144
148
|
}
|
|
145
149
|
}
|