@kvoon/oxlint-config 0.1.2 → 0.1.3
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.d.ts +0 -1
- package/dist/index.js +2 -2
- package/package.json +20 -18
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -72,11 +72,11 @@ function kvoon() {
|
|
|
72
72
|
"stylistic/no-multi-spaces": "warn",
|
|
73
73
|
"stylistic/block-spacing": "warn",
|
|
74
74
|
"stylistic/key-spacing": "warn",
|
|
75
|
-
"perfectionist/sort-imports": "warn",
|
|
75
|
+
"perfectionist/sort-imports": ["warn", { newlinesBetween: "ignore" }],
|
|
76
76
|
"perfectionist/sort-named-imports": "warn",
|
|
77
77
|
"perfectionist/sort-exports": "warn",
|
|
78
78
|
"perfectionist/sort-named-exports": "warn",
|
|
79
|
-
"perfectionist/sort-objects": "
|
|
79
|
+
"perfectionist/sort-objects": "off",
|
|
80
80
|
"perfectionist/sort-object-types": "warn",
|
|
81
81
|
"perfectionist/sort-interfaces": "warn",
|
|
82
82
|
"perfectionist/sort-enums": "warn",
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kvoon/oxlint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
|
+
"packageManager": "pnpm@11.7.0",
|
|
5
6
|
"description": "Opinionated shareable oxlint config (style, vue, sort, type-aware)",
|
|
6
7
|
"author": "Kevin Kwong <kwongliegaai@gmail.com>",
|
|
7
8
|
"license": "MIT",
|
|
@@ -36,6 +37,18 @@
|
|
|
36
37
|
"publishConfig": {
|
|
37
38
|
"access": "public"
|
|
38
39
|
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"dev": "tsdown --watch",
|
|
42
|
+
"build": "tsdown",
|
|
43
|
+
"prepublishOnly": "pnpm build",
|
|
44
|
+
"release": "nlx bumpp && pnpm publish",
|
|
45
|
+
"publish:ci": "pnpm publish --no-git-checks",
|
|
46
|
+
"up": "nlx taze -I major",
|
|
47
|
+
"typecheck": "tsc --noEmit",
|
|
48
|
+
"test": "vitest",
|
|
49
|
+
"lint": "oxlint .",
|
|
50
|
+
"lint:fix": "oxlint --fix ."
|
|
51
|
+
},
|
|
39
52
|
"peerDependencies": {
|
|
40
53
|
"oxlint": "^1.74.0",
|
|
41
54
|
"oxlint-tsgolint": "^0.24.0"
|
|
@@ -45,26 +58,15 @@
|
|
|
45
58
|
"eslint-plugin-perfectionist": "^5.10.0"
|
|
46
59
|
},
|
|
47
60
|
"devDependencies": {
|
|
48
|
-
"@antfu/ni": "
|
|
61
|
+
"@antfu/ni": "catalog:cli",
|
|
49
62
|
"oxlint": "^1.74.0",
|
|
50
63
|
"oxlint-tsgolint": "^0.24.0",
|
|
51
|
-
"tsdown": "
|
|
52
|
-
"tsx": "
|
|
53
|
-
"typescript": "
|
|
54
|
-
"vitest": "
|
|
64
|
+
"tsdown": "catalog:cli",
|
|
65
|
+
"tsx": "catalog:cli",
|
|
66
|
+
"typescript": "catalog:cli",
|
|
67
|
+
"vitest": "catalog:cli"
|
|
55
68
|
},
|
|
56
69
|
"simple-git-hooks": {
|
|
57
70
|
"pre-commit": "pnpm exec oxlint ."
|
|
58
|
-
},
|
|
59
|
-
"scripts": {
|
|
60
|
-
"dev": "tsdown --watch",
|
|
61
|
-
"build": "tsdown",
|
|
62
|
-
"release": "nlx bumpp && pnpm publish",
|
|
63
|
-
"publish:ci": "pnpm publish --no-git-checks",
|
|
64
|
-
"up": "nlx taze -I major",
|
|
65
|
-
"typecheck": "tsc --noEmit",
|
|
66
|
-
"test": "vitest",
|
|
67
|
-
"lint": "oxlint .",
|
|
68
|
-
"lint:fix": "oxlint --fix ."
|
|
69
71
|
}
|
|
70
|
-
}
|
|
72
|
+
}
|