@kvoon/oxlint-config 0.1.5 → 0.1.6
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/dist/index.js +24 -20
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -79,29 +79,33 @@ function kvoon() {
|
|
|
79
79
|
"stylistic/no-multi-spaces": "warn",
|
|
80
80
|
"stylistic/block-spacing": "warn",
|
|
81
81
|
"stylistic/key-spacing": "warn",
|
|
82
|
-
"perfectionist/sort-imports": ["warn", {
|
|
82
|
+
"perfectionist/sort-imports": ["warn", {
|
|
83
|
+
groups: [
|
|
84
|
+
"type-import",
|
|
85
|
+
[
|
|
86
|
+
"type-parent",
|
|
87
|
+
"type-sibling",
|
|
88
|
+
"type-index",
|
|
89
|
+
"type-internal"
|
|
90
|
+
],
|
|
91
|
+
"value-builtin",
|
|
92
|
+
"value-external",
|
|
93
|
+
"value-internal",
|
|
94
|
+
[
|
|
95
|
+
"value-parent",
|
|
96
|
+
"value-sibling",
|
|
97
|
+
"value-index"
|
|
98
|
+
],
|
|
99
|
+
"side-effect",
|
|
100
|
+
"ts-equals-import",
|
|
101
|
+
"unknown"
|
|
102
|
+
],
|
|
103
|
+
newlinesBetween: "ignore",
|
|
104
|
+
newlinesInside: "ignore"
|
|
105
|
+
}],
|
|
83
106
|
"perfectionist/sort-named-imports": "warn",
|
|
84
107
|
"perfectionist/sort-exports": "warn",
|
|
85
108
|
"perfectionist/sort-named-exports": "warn",
|
|
86
|
-
"perfectionist/sort-objects": "off",
|
|
87
|
-
"perfectionist/sort-object-types": "warn",
|
|
88
|
-
"perfectionist/sort-interfaces": "warn",
|
|
89
|
-
"perfectionist/sort-enums": "warn",
|
|
90
|
-
"perfectionist/sort-union-types": "warn",
|
|
91
|
-
"perfectionist/sort-intersection-types": "warn",
|
|
92
|
-
"perfectionist/sort-array-includes": "warn",
|
|
93
|
-
"perfectionist/sort-classes": "warn",
|
|
94
|
-
"perfectionist/sort-maps": "warn",
|
|
95
|
-
"perfectionist/sort-sets": "warn",
|
|
96
|
-
"perfectionist/sort-switch-case": "warn",
|
|
97
|
-
"perfectionist/sort-jsx-props": "warn",
|
|
98
|
-
"perfectionist/sort-heritage-clauses": "warn",
|
|
99
|
-
"perfectionist/sort-decorators": "warn",
|
|
100
|
-
"perfectionist/sort-modules": "warn",
|
|
101
|
-
"perfectionist/sort-variable-declarations": "warn",
|
|
102
|
-
"perfectionist/sort-import-attributes": "warn",
|
|
103
|
-
"perfectionist/sort-export-attributes": "warn",
|
|
104
|
-
"perfectionist/sort-arrays": "warn",
|
|
105
109
|
"command/command": "error"
|
|
106
110
|
},
|
|
107
111
|
overrides: [{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kvoon/oxlint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.6",
|
|
5
5
|
"packageManager": "pnpm@11.7.0",
|
|
6
6
|
"description": "Opinionated shareable oxlint config (style, vue, sort, type-aware)",
|
|
7
7
|
"author": "Kevin Kwong <kwongliegaai@gmail.com>",
|