oxlint 0.9.6 → 0.9.8
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/configuration_schema.json +19 -0
- package/package.json +9 -9
|
@@ -24,6 +24,19 @@
|
|
|
24
24
|
}
|
|
25
25
|
]
|
|
26
26
|
},
|
|
27
|
+
"plugins": {
|
|
28
|
+
"default": [
|
|
29
|
+
"react",
|
|
30
|
+
"unicorn",
|
|
31
|
+
"typescript",
|
|
32
|
+
"oxc"
|
|
33
|
+
],
|
|
34
|
+
"allOf": [
|
|
35
|
+
{
|
|
36
|
+
"$ref": "#/definitions/LintPlugins"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
},
|
|
27
40
|
"rules": {
|
|
28
41
|
"description": "See [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html).",
|
|
29
42
|
"default": {},
|
|
@@ -218,6 +231,12 @@
|
|
|
218
231
|
}
|
|
219
232
|
}
|
|
220
233
|
},
|
|
234
|
+
"LintPlugins": {
|
|
235
|
+
"type": "array",
|
|
236
|
+
"items": {
|
|
237
|
+
"type": "string"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
221
240
|
"NextPluginSettings": {
|
|
222
241
|
"type": "object",
|
|
223
242
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxlint",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.8",
|
|
4
4
|
"description": "Linter for the JavaScript Oxidation Compiler",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Boshen and oxc contributors",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"README.md"
|
|
27
27
|
],
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
-
"@oxlint/win32-x64": "0.9.
|
|
30
|
-
"@oxlint/win32-arm64": "0.9.
|
|
31
|
-
"@oxlint/linux-x64-gnu": "0.9.
|
|
32
|
-
"@oxlint/linux-arm64-gnu": "0.9.
|
|
33
|
-
"@oxlint/linux-x64-musl": "0.9.
|
|
34
|
-
"@oxlint/linux-arm64-musl": "0.9.
|
|
35
|
-
"@oxlint/darwin-x64": "0.9.
|
|
36
|
-
"@oxlint/darwin-arm64": "0.9.
|
|
29
|
+
"@oxlint/win32-x64": "0.9.8",
|
|
30
|
+
"@oxlint/win32-arm64": "0.9.8",
|
|
31
|
+
"@oxlint/linux-x64-gnu": "0.9.8",
|
|
32
|
+
"@oxlint/linux-arm64-gnu": "0.9.8",
|
|
33
|
+
"@oxlint/linux-x64-musl": "0.9.8",
|
|
34
|
+
"@oxlint/linux-arm64-musl": "0.9.8",
|
|
35
|
+
"@oxlint/darwin-x64": "0.9.8",
|
|
36
|
+
"@oxlint/darwin-arm64": "0.9.8"
|
|
37
37
|
}
|
|
38
38
|
}
|