@pobammer-ts/small-rules 2.0.0 → 2.1.0

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +47 -4
  2. package/dist/index.js +1286 -385
  3. package/package.json +18 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pobammer-ts/small-rules",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Various Oxlint-native rules for linting roblox-ts projects.",
5
5
  "keywords": [
6
6
  "lint",
@@ -51,7 +51,8 @@
51
51
  "jscpd": "jscpd",
52
52
  "knip": "knip-bun",
53
53
  "lint": "bash -c 'a=$(bash scripts/get-defaults.sh \"$@\"); nr oxlint $a && nr biome check $a' _",
54
- "lint:agent": "bash -c 'a=$(bash scripts/get-defaults.sh \"$@\"); nr oxlint --format agent $a && nr biome check --reporter json $a' _",
54
+ "lint:agent": "bash -c 'a=$(bash scripts/get-defaults.sh \"$@\"); nr oxlint --format agent $a && nr biome check --reporter concise $a' _",
55
+ "lint:json": "bun run --bun scripts/lint-json.ts",
55
56
  "oxfmt": "oxfmt",
56
57
  "oxlint": "oxlint",
57
58
  "prepublish": "tsdown --minify",
@@ -63,13 +64,14 @@
63
64
  "test:fuzz:run": "vitiate fuzz --fuzz-time 10 --config vitest.vitiate.config.ts",
64
65
  "test:mutation": "stryker run",
65
66
  "tsgo": "tsgo",
66
- "type-check": "tsgo --noEmit"
67
+ "type-check": "tsgo --noEmit",
68
+ "type-check:agent": "tsgo --noEmit --pretty false"
67
69
  },
68
70
  "dependencies": {
69
- "arktype": "2.2.0",
71
+ "arktype": "2.2.1",
70
72
  "ignore": "7.0.5",
71
- "oxc-parser": "0.135.0",
72
- "oxc-resolver": "11.20.0",
73
+ "oxc-parser": "0.137.0",
74
+ "oxc-resolver": "11.21.3",
73
75
  "oxlint-plugin-utilities": "1.0.0"
74
76
  },
75
77
  "devDependencies": {
@@ -87,9 +89,9 @@
87
89
  "@total-typescript/ts-reset": "0.6.1",
88
90
  "@types/bun": "1.3.14",
89
91
  "@types/node": "25",
90
- "@typescript-eslint/parser": "8.61.0",
91
- "@typescript/native-preview": "7.0.0-dev.20260612.1",
92
- "@vitest/coverage-v8": "4.1.8",
92
+ "@typescript-eslint/parser": "8.61.1",
93
+ "@typescript/native-preview": "7.0.0-dev.20260620.1",
94
+ "@vitest/coverage-v8": "4.1.9",
93
95
  "@vitiate/core": "0.3.0",
94
96
  "@vitiate/fuzzed-data-provider": "0.3.0",
95
97
  "bumpp": "11.1.0",
@@ -104,17 +106,17 @@
104
106
  "fdir": "6.5.0",
105
107
  "get-tsconfig": "4.14.0",
106
108
  "jiti": "2.7.0",
107
- "jscpd": "5.0.7",
108
- "knip": "6.16.1",
109
+ "jscpd": "5.0.10",
110
+ "knip": "6.17.1",
109
111
  "oxfmt": "0.55.0",
110
- "oxlint": "1.69.0",
112
+ "oxlint": "1.70.0",
111
113
  "oxlint-tsgolint": "0.23.0",
112
114
  "package-manager-detector": "1.6.0",
113
115
  "sfw": "2.0.6",
114
- "skills": "1.5.11",
115
- "tsdown": "0.22.2",
116
+ "skills": "1.5.12",
117
+ "tsdown": "0.22.3",
116
118
  "type-fest": "5.7.0",
117
- "vitest": "4.1.8",
119
+ "vitest": "4.1.9",
118
120
  "vitiate": "0.3.0"
119
121
  },
120
122
  "peerDependencies": {
@@ -123,5 +125,5 @@
123
125
  "engines": {
124
126
  "node": "^20.19.0 || >=22.12.0"
125
127
  },
126
- "packageManager": "aube@1.21.0"
128
+ "packageManager": "aube@1.22.0"
127
129
  }