@trackunit/eslint-plugin-trackunit 0.4.12 → 0.4.13

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,20 @@
1
+ ## 0.4.13 (2026-03-17)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - change @typescript-eslint/no-empty-function from warn to error ([24c97ca3698](https://github.com/Trackunit/manager/commit/24c97ca3698))
6
+ - revert noop comments inside JSDoc blocks to avoid nested comment termination ([1044ca7c63a](https://github.com/Trackunit/manager/commit/1044ca7c63a))
7
+ - replace empty function bodies with { /* noop */ } to resolve @typescript-eslint/no-empty-function warnings ([c47d449ecbd](https://github.com/Trackunit/manager/commit/c47d449ecbd))
8
+
9
+ ### 🧱 Updated Dependencies
10
+
11
+ - Updated shared-utils to 1.13.69
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - Aleksandar Yanev Mihaylov
16
+ - Cursor Agent
17
+
1
18
  ## 0.4.12 (2026-03-16)
2
19
 
3
20
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/eslint-plugin-trackunit",
3
- "version": "0.4.12",
3
+ "version": "0.4.13",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -59,7 +59,7 @@ exports.typescriptRules = {
59
59
  },
60
60
  ],
61
61
  "@typescript-eslint/no-non-null-assertion": "warn",
62
- "@typescript-eslint/no-empty-function": "warn",
62
+ "@typescript-eslint/no-empty-function": "error",
63
63
  "@typescript-eslint/no-unused-expressions": "error",
64
64
  "@typescript-eslint/dot-notation": "error",
65
65
  "@typescript-eslint/await-thenable": "warn",