@trackunit/eslint-plugin-trackunit 0.6.93 → 0.6.95-alpha-90b6c9b97dd.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,27 +1,3 @@
|
|
|
1
|
-
## 0.6.93 (2026-08-05)
|
|
2
|
-
|
|
3
|
-
### 🧱 Updated Dependencies
|
|
4
|
-
|
|
5
|
-
- Updated shared-utils to 1.15.93
|
|
6
|
-
|
|
7
|
-
## 0.6.92 (2026-08-04)
|
|
8
|
-
|
|
9
|
-
### 🧱 Updated Dependencies
|
|
10
|
-
|
|
11
|
-
- Updated shared-utils to 1.15.92
|
|
12
|
-
|
|
13
|
-
## 0.6.91 (2026-08-04)
|
|
14
|
-
|
|
15
|
-
### 🧱 Updated Dependencies
|
|
16
|
-
|
|
17
|
-
- Updated shared-utils to 1.15.91
|
|
18
|
-
|
|
19
|
-
## 0.6.90 (2026-08-03)
|
|
20
|
-
|
|
21
|
-
### 🧱 Updated Dependencies
|
|
22
|
-
|
|
23
|
-
- Updated shared-utils to 1.15.90
|
|
24
|
-
|
|
25
1
|
## 0.6.89 (2026-08-03)
|
|
26
2
|
|
|
27
3
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -51,10 +51,7 @@ exports.strictJsdocRules = {
|
|
|
51
51
|
"jsdoc/require-param-description": "error",
|
|
52
52
|
"jsdoc/check-access": "error",
|
|
53
53
|
"jsdoc/check-property-names": "error",
|
|
54
|
-
|
|
55
|
-
// `@category`, and `@ignore`, which are already recognized TypeDoc/JSDoc tags and need no
|
|
56
|
-
// allowlisting here) — see `libs/storybook/docgen-enricher`'s `AnnotationTags` schema.
|
|
57
|
-
"jsdoc/check-tag-names": ["error", { definedTags: ["important"] }],
|
|
54
|
+
"jsdoc/check-tag-names": "error",
|
|
58
55
|
"jsdoc/check-types": "error",
|
|
59
56
|
"jsdoc/check-values": "error",
|
|
60
57
|
"jsdoc/check-alignment": "error",
|
|
@@ -17,7 +17,7 @@ import * as jsdoc from "eslint-plugin-jsdoc";
|
|
|
17
17
|
import * as noNull from "eslint-plugin-no-null";
|
|
18
18
|
import * as react from "eslint-plugin-react";
|
|
19
19
|
import * as reactHooks from "eslint-plugin-react-hooks";
|
|
20
|
-
import testingLibrary from "eslint-plugin-testing-library";
|
|
20
|
+
import * as testingLibrary from "eslint-plugin-testing-library";
|
|
21
21
|
import * as globals from "globals";
|
|
22
22
|
import * as jsoncParser from "jsonc-eslint-parser";
|
|
23
23
|
export declare const localRulesPlugin: {
|
|
@@ -31,8 +31,8 @@ const react = tslib_1.__importStar(require("eslint-plugin-react"));
|
|
|
31
31
|
exports.react = react;
|
|
32
32
|
const reactHooks = tslib_1.__importStar(require("eslint-plugin-react-hooks"));
|
|
33
33
|
exports.reactHooks = reactHooks;
|
|
34
|
-
const
|
|
35
|
-
exports.testingLibrary =
|
|
34
|
+
const testingLibrary = tslib_1.__importStar(require("eslint-plugin-testing-library"));
|
|
35
|
+
exports.testingLibrary = testingLibrary;
|
|
36
36
|
const globals = tslib_1.__importStar(require("globals"));
|
|
37
37
|
exports.globals = globals;
|
|
38
38
|
const jsoncParser = tslib_1.__importStar(require("jsonc-eslint-parser"));
|