@trackunit/eslint-plugin-trackunit 0.6.115 → 0.6.117

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/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ ## 0.6.117 (2026-08-20)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - **GLU-1349:** address PR #24217 review comments ([#24217](https://github.com/Trackunit/manager/issues/24217))
6
+
7
+ ### 🧱 Updated Dependencies
8
+
9
+ - Updated css-classname-utils to 0.0.20
10
+ - Updated shared-utils to 1.16.20
11
+
12
+ ### ❤️ Thank You
13
+
14
+ - Cursor @cursoragent
15
+ - Michael Buss Rønne
16
+
17
+ ## 0.6.116 (2026-08-20)
18
+
19
+ ### 🧱 Updated Dependencies
20
+
21
+ - Updated css-classname-utils to 0.0.19
22
+ - Updated shared-utils to 1.16.19
23
+
1
24
  ## 0.6.115 (2026-08-19)
2
25
 
3
26
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/eslint-plugin-trackunit",
3
- "version": "0.6.115",
3
+ "version": "0.6.117",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "@nx/eslint-plugin": "23.1.0",
11
- "@trackunit/css-classname-utils": "0.0.18",
11
+ "@trackunit/css-classname-utils": "0.0.20",
12
12
  "@typescript-eslint/eslint-plugin": "8.58.1",
13
13
  "@typescript-eslint/utils": "8.58.1",
14
14
  "eslint-config-prettier": "^10.1.8",
@@ -18,6 +18,9 @@ exports.baseJestOverrides = {
18
18
  rules: {
19
19
  ...plugins_1.jest.configs.recommended.rules,
20
20
  ...plugins_1.jest.configs.style.rules,
21
+ // Recognise vitest's `expectTypeOf` (compile-time-only type assertions) alongside `expect`,
22
+ // otherwise specs that only assert types are flagged as having no assertions.
23
+ "jest/expect-expect": ["error", { assertFunctionNames: ["expect", "expectTypeOf"] }],
21
24
  "@typescript-eslint/no-explicit-any": "off",
22
25
  "@typescript-eslint/no-empty-function": "off",
23
26
  "@typescript-eslint/no-non-null-assertion": "off",