@pobammer-ts/small-rules 2.0.0 → 2.2.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 +157 -278
  2. package/dist/index.js +1575 -548
  3. package/package.json +30 -29
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.2.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,21 +64,22 @@
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
- "oxlint-plugin-utilities": "1.0.0"
73
+ "oxc-parser": "0.138.0",
74
+ "oxc-resolver": "11.21.3",
75
+ "oxlint-plugin-utilities": "1.1.0"
74
76
  },
75
77
  "devDependencies": {
76
- "@antfu/ni": "30.1.0",
77
- "@biomejs/biome": "2.5.0",
78
+ "@antfu/ni": "30.2.0",
79
+ "@biomejs/biome": "2.5.1",
78
80
  "@cliffy/command": "npm:@jsr/cliffy__command@1.2.1",
79
- "@commitlint/config-conventional": "21.0.2",
80
- "@commitlint/types": "21.0.1",
81
+ "@commitlint/config-conventional": "21.1.0",
82
+ "@commitlint/types": "21.1.0",
81
83
  "@fast-check/vitest": "0.4.1",
82
84
  "@octokit/rest": "22.0.1",
83
85
  "@std/msgpack": "npm:@jsr/std__msgpack@1.0.3",
@@ -87,35 +89,34 @@
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",
93
- "@vitiate/core": "0.3.0",
94
- "@vitiate/fuzzed-data-provider": "0.3.0",
92
+ "@typescript/native-preview": "7.0.0-dev.20260629.1",
93
+ "@vitest/coverage-v8": "4.1.9",
94
+ "@vitiate/core": "0.3.1",
95
+ "@vitiate/fuzzed-data-provider": "0.3.1",
95
96
  "bumpp": "11.1.0",
96
97
  "changelogithub": "14.0.0",
97
- "commitlint": "21.0.2",
98
- "eslint": "10.4.1",
98
+ "commitlint": "21.1.0",
99
+ "eslint": "10.6.0",
99
100
  "eslint-plugin-antfu": "3.2.3",
100
- "eslint-plugin-regexp": "3.1.0",
101
- "eslint-plugin-sonarjs": "4.0.3",
101
+ "eslint-plugin-regexp": "3.1.1",
102
+ "eslint-plugin-sonarjs": "4.1.0",
102
103
  "eslint-plugin-unused-imports": "4.4.1",
103
104
  "fast-check": "4.8.0",
104
105
  "fdir": "6.5.0",
105
106
  "get-tsconfig": "4.14.0",
106
107
  "jiti": "2.7.0",
107
- "jscpd": "5.0.7",
108
- "knip": "6.16.1",
109
- "oxfmt": "0.55.0",
110
- "oxlint": "1.69.0",
108
+ "jscpd": "5.0.11",
109
+ "knip": "6.23.0",
110
+ "oxfmt": "0.57.0",
111
+ "oxlint": "1.72.0",
111
112
  "oxlint-tsgolint": "0.23.0",
112
113
  "package-manager-detector": "1.6.0",
113
114
  "sfw": "2.0.6",
114
- "skills": "1.5.11",
115
- "tsdown": "0.22.2",
115
+ "skills": "1.5.14",
116
+ "tsdown": "0.22.3",
116
117
  "type-fest": "5.7.0",
117
- "vitest": "4.1.8",
118
- "vitiate": "0.3.0"
118
+ "vitest": "4.1.9",
119
+ "vitiate": "0.3.1"
119
120
  },
120
121
  "peerDependencies": {
121
122
  "typescript": ">=5 <8"
@@ -123,5 +124,5 @@
123
124
  "engines": {
124
125
  "node": "^20.19.0 || >=22.12.0"
125
126
  },
126
- "packageManager": "aube@1.21.0"
127
+ "packageManager": "aube@1.25.1"
127
128
  }