@trackunit/eslint-plugin-trackunit 0.6.55 β†’ 0.6.57

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,24 @@
1
+ ## 0.6.57 (2026-07-03)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated shared-utils to 1.15.57
6
+
7
+ ## 0.6.56 (2026-07-03)
8
+
9
+ ### πŸš€ Features
10
+
11
+ - **eslint:** add no-deprecated-graphql-fields rule ([#24113](https://github.com/Trackunit/manager/pull/24113))
12
+
13
+ ### 🧱 Updated Dependencies
14
+
15
+ - Updated shared-utils to 1.15.56
16
+
17
+ ### ❀️ Thank You
18
+
19
+ - Cursor @cursoragent
20
+ - Michael Buss RΓΈnne @man-trackunit
21
+
1
22
  ## 0.6.55 (2026-07-02)
2
23
 
3
24
  ### πŸš€ Features
package/README.md CHANGED
@@ -78,9 +78,10 @@ All custom rules are enabled automatically through the presets under the `@track
78
78
  ### NX / Monorepo
79
79
 
80
80
 
81
- | Rule | Severity | Auto-fix | Description |
82
- | ------------------------------------------------------------ | -------- | -------- | ------------------------------------------------------------------------------------------------------ |
83
- | `@trackunit/no-internal-graphql-when-tagged-with-gql-public` | error | β€” | Prevents internal GraphQL usage in projects tagged with `gql-public`. Applied to `project.json` files. |
81
+ | Rule | Severity | Auto-fix | Description |
82
+ | ------------------------------------------------------------ | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------- |
83
+ | `@trackunit/no-internal-graphql-when-tagged-with-gql-public` | error | β€” | Prevents internal GraphQL usage in projects tagged with `gql:public`. Applied to `project.json` files. |
84
+ | `@trackunit/no-deprecated-graphql-fields` | error | β€” | Prevents usage of `@deprecated` GraphQL fields in projects tagged with `dependencies:no-deprecated`. Applied to `project.json` files. |
84
85
 
85
86
 
86
87
  ### Storybook
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/eslint-plugin-trackunit",
3
- "version": "0.6.55",
3
+ "version": "0.6.57",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -26,7 +26,8 @@
26
26
  },
27
27
  "peerDependencies": {
28
28
  "@typescript-eslint/parser": "^8.58.1",
29
- "eslint": "^9.33.0"
29
+ "eslint": "^9.33.0",
30
+ "graphql": "^16.0.0"
30
31
  },
31
32
  "migrations": "./migrations.json",
32
33
  "types": "./src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -6,4 +6,4 @@ export { findMonorepoRoot } from "./lib/config/utils";
6
6
  export type { MatchCriteria, ProjectMetadata } from "./lib/utils/nx-utils";
7
7
  export { strictJsdocRules } from "./lib/config/fragments/jsdoc-rules";
8
8
  export { restrictedImportRules } from "./lib/config/fragments/restricted-imports";
9
- export { globals, jsdoc, nx, reactHooks, tsParser } from "./lib/config/plugins";
9
+ export { globals, jsdoc, localRulesPlugin, nx, reactHooks, tsParser } from "./lib/config/plugins";
package/src/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.tsParser = exports.reactHooks = exports.nx = exports.jsdoc = exports.globals = exports.restrictedImportRules = exports.strictJsdocRules = exports.findMonorepoRoot = exports.createSkipWhen = exports.configs = void 0;
3
+ exports.tsParser = exports.reactHooks = exports.nx = exports.localRulesPlugin = exports.jsdoc = exports.globals = exports.restrictedImportRules = exports.strictJsdocRules = exports.findMonorepoRoot = exports.createSkipWhen = exports.configs = void 0;
4
4
  const rules_map_1 = require("./lib/rules-map");
5
5
  exports.default = rules_map_1.rulesMap;
6
6
  var config_1 = require("./lib/config");
@@ -16,6 +16,7 @@ Object.defineProperty(exports, "restrictedImportRules", { enumerable: true, get:
16
16
  var plugins_1 = require("./lib/config/plugins");
17
17
  Object.defineProperty(exports, "globals", { enumerable: true, get: function () { return plugins_1.globals; } });
18
18
  Object.defineProperty(exports, "jsdoc", { enumerable: true, get: function () { return plugins_1.jsdoc; } });
19
+ Object.defineProperty(exports, "localRulesPlugin", { enumerable: true, get: function () { return plugins_1.localRulesPlugin; } });
19
20
  Object.defineProperty(exports, "nx", { enumerable: true, get: function () { return plugins_1.nx; } });
20
21
  Object.defineProperty(exports, "reactHooks", { enumerable: true, get: function () { return plugins_1.reactHooks; } });
21
22
  Object.defineProperty(exports, "tsParser", { enumerable: true, get: function () { return plugins_1.tsParser; } });
@@ -26,6 +26,9 @@ export declare const configs: {
26
26
  "no-typescript-assertion": import("@typescript-eslint/utils/ts-eslint").RuleModule<"angleBracketAssertion" | "asAssertion" | "nonNullAssertion", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
27
27
  name: string;
28
28
  };
29
+ "no-deprecated-graphql-fields": import("@typescript-eslint/utils/ts-eslint").RuleModule<"deprecatedFieldUsed", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
30
+ name: string;
31
+ };
29
32
  "no-internal-graphql-when-tagged-with-gql-public": import("@typescript-eslint/utils/ts-eslint").RuleModule<"internalGraphqlFileFound", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
30
33
  name: string;
31
34
  };
@@ -136,6 +139,7 @@ export declare const configs: {
136
139
  rules: {
137
140
  [x: string]: import("eslint").Linter.RuleEntry<any[]>;
138
141
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public"?: undefined;
142
+ "@trackunit/no-deprecated-graphql-fields"?: undefined;
139
143
  "@typescript-eslint/no-require-imports"?: undefined;
140
144
  "@nx/enforce-module-boundaries"?: undefined;
141
145
  };
@@ -178,6 +182,7 @@ export declare const configs: {
178
182
  "no-unused-expressions": string;
179
183
  "no-shadow": string;
180
184
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public"?: undefined;
185
+ "@trackunit/no-deprecated-graphql-fields"?: undefined;
181
186
  "@typescript-eslint/no-require-imports"?: undefined;
182
187
  "@nx/enforce-module-boundaries"?: undefined;
183
188
  };
@@ -215,6 +220,9 @@ export declare const configs: {
215
220
  "no-typescript-assertion": import("@typescript-eslint/utils/ts-eslint").RuleModule<"angleBracketAssertion" | "asAssertion" | "nonNullAssertion", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
216
221
  name: string;
217
222
  };
223
+ "no-deprecated-graphql-fields": import("@typescript-eslint/utils/ts-eslint").RuleModule<"deprecatedFieldUsed", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
224
+ name: string;
225
+ };
218
226
  "no-internal-graphql-when-tagged-with-gql-public": import("@typescript-eslint/utils/ts-eslint").RuleModule<"internalGraphqlFileFound", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
219
227
  name: string;
220
228
  };
@@ -288,6 +296,7 @@ export declare const configs: {
288
296
  };
289
297
  rules: {
290
298
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public": string;
299
+ "@trackunit/no-deprecated-graphql-fields": string;
291
300
  "@typescript-eslint/no-require-imports"?: undefined;
292
301
  "@nx/enforce-module-boundaries"?: undefined;
293
302
  };
@@ -296,6 +305,7 @@ export declare const configs: {
296
305
  rules: {
297
306
  "@typescript-eslint/no-require-imports": string;
298
307
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public"?: undefined;
308
+ "@trackunit/no-deprecated-graphql-fields"?: undefined;
299
309
  "@nx/enforce-module-boundaries"?: undefined;
300
310
  };
301
311
  plugins?: undefined;
@@ -305,6 +315,7 @@ export declare const configs: {
305
315
  rules: {
306
316
  "@nx/enforce-module-boundaries": string;
307
317
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public"?: undefined;
318
+ "@trackunit/no-deprecated-graphql-fields"?: undefined;
308
319
  "@typescript-eslint/no-require-imports"?: undefined;
309
320
  };
310
321
  plugins?: undefined;
@@ -336,6 +347,9 @@ export declare const configs: {
336
347
  "no-typescript-assertion": import("@typescript-eslint/utils/ts-eslint").RuleModule<"angleBracketAssertion" | "asAssertion" | "nonNullAssertion", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
337
348
  name: string;
338
349
  };
350
+ "no-deprecated-graphql-fields": import("@typescript-eslint/utils/ts-eslint").RuleModule<"deprecatedFieldUsed", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
351
+ name: string;
352
+ };
339
353
  "no-internal-graphql-when-tagged-with-gql-public": import("@typescript-eslint/utils/ts-eslint").RuleModule<"internalGraphqlFileFound", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
340
354
  name: string;
341
355
  };
@@ -44,6 +44,9 @@ export declare const localRulesPlugin: {
44
44
  "no-typescript-assertion": import("@typescript-eslint/utils/ts-eslint").RuleModule<"angleBracketAssertion" | "asAssertion" | "nonNullAssertion", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
45
45
  name: string;
46
46
  };
47
+ "no-deprecated-graphql-fields": import("@typescript-eslint/utils/ts-eslint").RuleModule<"deprecatedFieldUsed", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
48
+ name: string;
49
+ };
47
50
  "no-internal-graphql-when-tagged-with-gql-public": import("@typescript-eslint/utils/ts-eslint").RuleModule<"internalGraphqlFileFound", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
48
51
  name: string;
49
52
  };
@@ -26,6 +26,9 @@ export declare const base: (import("eslint").Linter.FlatConfig<import("eslint").
26
26
  "no-typescript-assertion": import("@typescript-eslint/utils/ts-eslint").RuleModule<"angleBracketAssertion" | "asAssertion" | "nonNullAssertion", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
27
27
  name: string;
28
28
  };
29
+ "no-deprecated-graphql-fields": import("@typescript-eslint/utils/ts-eslint").RuleModule<"deprecatedFieldUsed", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
30
+ name: string;
31
+ };
29
32
  "no-internal-graphql-when-tagged-with-gql-public": import("@typescript-eslint/utils/ts-eslint").RuleModule<"internalGraphqlFileFound", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
30
33
  name: string;
31
34
  };
@@ -136,6 +139,7 @@ export declare const base: (import("eslint").Linter.FlatConfig<import("eslint").
136
139
  rules: {
137
140
  [x: string]: import("eslint").Linter.RuleEntry<any[]>;
138
141
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public"?: undefined;
142
+ "@trackunit/no-deprecated-graphql-fields"?: undefined;
139
143
  "@typescript-eslint/no-require-imports"?: undefined;
140
144
  "@nx/enforce-module-boundaries"?: undefined;
141
145
  };
@@ -178,6 +182,7 @@ export declare const base: (import("eslint").Linter.FlatConfig<import("eslint").
178
182
  "no-unused-expressions": string;
179
183
  "no-shadow": string;
180
184
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public"?: undefined;
185
+ "@trackunit/no-deprecated-graphql-fields"?: undefined;
181
186
  "@typescript-eslint/no-require-imports"?: undefined;
182
187
  "@nx/enforce-module-boundaries"?: undefined;
183
188
  };
@@ -215,6 +220,9 @@ export declare const base: (import("eslint").Linter.FlatConfig<import("eslint").
215
220
  "no-typescript-assertion": import("@typescript-eslint/utils/ts-eslint").RuleModule<"angleBracketAssertion" | "asAssertion" | "nonNullAssertion", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
216
221
  name: string;
217
222
  };
223
+ "no-deprecated-graphql-fields": import("@typescript-eslint/utils/ts-eslint").RuleModule<"deprecatedFieldUsed", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
224
+ name: string;
225
+ };
218
226
  "no-internal-graphql-when-tagged-with-gql-public": import("@typescript-eslint/utils/ts-eslint").RuleModule<"internalGraphqlFileFound", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
219
227
  name: string;
220
228
  };
@@ -288,6 +296,7 @@ export declare const base: (import("eslint").Linter.FlatConfig<import("eslint").
288
296
  };
289
297
  rules: {
290
298
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public": string;
299
+ "@trackunit/no-deprecated-graphql-fields": string;
291
300
  "@typescript-eslint/no-require-imports"?: undefined;
292
301
  "@nx/enforce-module-boundaries"?: undefined;
293
302
  };
@@ -296,6 +305,7 @@ export declare const base: (import("eslint").Linter.FlatConfig<import("eslint").
296
305
  rules: {
297
306
  "@typescript-eslint/no-require-imports": string;
298
307
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public"?: undefined;
308
+ "@trackunit/no-deprecated-graphql-fields"?: undefined;
299
309
  "@nx/enforce-module-boundaries"?: undefined;
300
310
  };
301
311
  plugins?: undefined;
@@ -305,6 +315,7 @@ export declare const base: (import("eslint").Linter.FlatConfig<import("eslint").
305
315
  rules: {
306
316
  "@nx/enforce-module-boundaries": string;
307
317
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public"?: undefined;
318
+ "@trackunit/no-deprecated-graphql-fields"?: undefined;
308
319
  "@typescript-eslint/no-require-imports"?: undefined;
309
320
  };
310
321
  plugins?: undefined;
@@ -121,6 +121,7 @@ exports.base = [
121
121
  },
122
122
  rules: {
123
123
  "@trackunit/no-internal-graphql-when-tagged-with-gql-public": "error",
124
+ "@trackunit/no-deprecated-graphql-fields": "warn",
124
125
  },
125
126
  },
126
127
  jest_overrides_1.baseJestOverrides,
@@ -25,6 +25,9 @@ export declare const reactPreset: (import("eslint").Linter.Config<import("eslint
25
25
  "no-typescript-assertion": import("@typescript-eslint/utils/ts-eslint").RuleModule<"angleBracketAssertion" | "asAssertion" | "nonNullAssertion", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
26
26
  name: string;
27
27
  };
28
+ "no-deprecated-graphql-fields": import("@typescript-eslint/utils/ts-eslint").RuleModule<"deprecatedFieldUsed", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
29
+ name: string;
30
+ };
28
31
  "no-internal-graphql-when-tagged-with-gql-public": import("@typescript-eslint/utils/ts-eslint").RuleModule<"internalGraphqlFileFound", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
29
32
  name: string;
30
33
  };
@@ -0,0 +1,4 @@
1
+ import { ESLintUtils } from "@typescript-eslint/utils";
2
+ export declare const noDeprecatedGraphqlFields: ESLintUtils.RuleModule<"deprecatedFieldUsed", [], unknown, ESLintUtils.RuleListener> & {
3
+ name: string;
4
+ };
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.noDeprecatedGraphqlFields = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const utils_1 = require("@typescript-eslint/utils");
6
+ const fs = tslib_1.__importStar(require("fs"));
7
+ const graphql_1 = require("graphql");
8
+ const path = tslib_1.__importStar(require("path"));
9
+ const file_utils_1 = require("../../utils/file-utils");
10
+ const schema_cache_1 = require("./schema-cache");
11
+ const createRule = utils_1.ESLintUtils.RuleCreator(name => `https://github.com/trackunit/manager/blob/main/libs/eslint/plugin-trackunit/src/lib/rules/${name}/${name}.ts`);
12
+ const EXCLUDED_DIRS = new Set(["node_modules", "generated", "dist"]);
13
+ const collectGraphqlFiles = (dir, files = []) => {
14
+ let entries;
15
+ try {
16
+ entries = fs.readdirSync(dir, { withFileTypes: true });
17
+ }
18
+ catch {
19
+ return files;
20
+ }
21
+ for (const entry of entries) {
22
+ const fullPath = path.join(dir, entry.name);
23
+ let stat;
24
+ try {
25
+ stat = fs.statSync(fullPath);
26
+ }
27
+ catch {
28
+ continue;
29
+ }
30
+ if (stat.isDirectory()) {
31
+ if (!EXCLUDED_DIRS.has(entry.name)) {
32
+ collectGraphqlFiles(fullPath, files);
33
+ }
34
+ }
35
+ else if (entry.name.endsWith(".graphql")) {
36
+ files.push(fullPath);
37
+ }
38
+ }
39
+ return files;
40
+ };
41
+ exports.noDeprecatedGraphqlFields = createRule({
42
+ name: "no-deprecated-graphql-fields",
43
+ meta: {
44
+ type: "problem",
45
+ docs: {
46
+ description: "Disallow usage of @deprecated GraphQL fields in .graphql operation files",
47
+ },
48
+ messages: {
49
+ deprecatedFieldUsed: "Deprecated GraphQL field used in {{file}}: {{message}}",
50
+ },
51
+ schema: [],
52
+ },
53
+ defaultOptions: [],
54
+ create(context) {
55
+ return {
56
+ Program: _node => {
57
+ const sourceFilePath = context.filename;
58
+ if (!sourceFilePath.endsWith("/project.json")) {
59
+ return;
60
+ }
61
+ const nxJsonPath = (0, file_utils_1.findNearestFile)(sourceFilePath, "nx.json");
62
+ if (!nxJsonPath) {
63
+ return;
64
+ }
65
+ const monorepoRoot = path.dirname(nxJsonPath);
66
+ const schemaPath = path.join(monorepoRoot, "libs", "api", "internal-gql-schema", "generated", "internal-schema.gql");
67
+ const schema = (0, schema_cache_1.getSchema)(schemaPath);
68
+ if (!schema) {
69
+ return;
70
+ }
71
+ const projectDir = path.dirname(sourceFilePath);
72
+ const graphqlFiles = collectGraphqlFiles(projectDir);
73
+ for (const gqlFile of graphqlFiles) {
74
+ let content;
75
+ try {
76
+ content = fs.readFileSync(gqlFile, "utf8");
77
+ }
78
+ catch {
79
+ continue;
80
+ }
81
+ let document;
82
+ try {
83
+ document = (0, graphql_1.parse)(content);
84
+ }
85
+ catch {
86
+ continue;
87
+ }
88
+ const errors = (0, graphql_1.validate)(schema, document, [graphql_1.NoDeprecatedCustomRule]);
89
+ for (const error of errors) {
90
+ context.report({
91
+ messageId: "deprecatedFieldUsed",
92
+ data: {
93
+ file: path.relative(monorepoRoot, gqlFile),
94
+ message: error.message,
95
+ },
96
+ loc: { line: 1, column: 0 },
97
+ });
98
+ }
99
+ }
100
+ },
101
+ };
102
+ },
103
+ });
104
+ //# sourceMappingURL=no-deprecated-graphql-fields.js.map
@@ -0,0 +1,3 @@
1
+ import { type GraphQLSchema } from "graphql";
2
+ export declare const getSchema: (schemaPath: string) => GraphQLSchema | null;
3
+ export declare const clearSchemaCache: () => void;
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.clearSchemaCache = exports.getSchema = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const fs = tslib_1.__importStar(require("fs"));
6
+ const graphql_1 = require("graphql");
7
+ /**
8
+ * Caches parsed schemas by path to avoid re-parsing on every project.json lint.
9
+ * Isolated in its own module so tests can reset it independently of the rule's production exports.
10
+ */
11
+ const schemaCache = new Map();
12
+ const getSchema = (schemaPath) => {
13
+ if (schemaCache.has(schemaPath)) {
14
+ return schemaCache.get(schemaPath) ?? null;
15
+ }
16
+ try {
17
+ const content = fs.readFileSync(schemaPath, "utf8");
18
+ const schema = (0, graphql_1.buildSchema)(content);
19
+ schemaCache.set(schemaPath, schema);
20
+ return schema;
21
+ }
22
+ catch {
23
+ return null;
24
+ }
25
+ };
26
+ exports.getSchema = getSchema;
27
+ const clearSchemaCache = () => {
28
+ schemaCache.clear();
29
+ };
30
+ exports.clearSchemaCache = clearSchemaCache;
31
+ //# sourceMappingURL=schema-cache.js.map
@@ -22,6 +22,9 @@ export declare const rulesMap: {
22
22
  "no-typescript-assertion": ESLintUtils.RuleModule<"angleBracketAssertion" | "asAssertion" | "nonNullAssertion", [], unknown, ESLintUtils.RuleListener> & {
23
23
  name: string;
24
24
  };
25
+ "no-deprecated-graphql-fields": ESLintUtils.RuleModule<"deprecatedFieldUsed", [], unknown, ESLintUtils.RuleListener> & {
26
+ name: string;
27
+ };
25
28
  "no-internal-graphql-when-tagged-with-gql-public": ESLintUtils.RuleModule<"internalGraphqlFileFound", [], unknown, ESLintUtils.RuleListener> & {
26
29
  name: string;
27
30
  };
@@ -4,6 +4,7 @@ exports.rulesMap = void 0;
4
4
  const component_name_matches_filename_1 = require("./rules/component-name-matches-filename/component-name-matches-filename");
5
5
  const cva_merge_base_classes_as_array_1 = require("./rules/cva-merge-base-classes-as-array/cva-merge-base-classes-as-array");
6
6
  const design_guideline_button_icon_size_match_1 = require("./rules/design-guideline-button-icon-size-match/design-guideline-button-icon-size-match");
7
+ const no_deprecated_graphql_fields_1 = require("./rules/no-deprecated-graphql-fields/no-deprecated-graphql-fields");
7
8
  const no_internal_barrel_files_1 = require("./rules/no-internal-barrel-files/no-internal-barrel-files");
8
9
  const no_internal_graphql_when_tagged_with_gql_public_1 = require("./rules/no-internal-graphql-when-tagged-with-gql-public/no-internal-graphql-when-tagged-with-gql-public");
9
10
  const no_jest_mock_trackunit_react_core_hooks_1 = require("./rules/no-jest-mock-trackunit-react-core-hooks/no-jest-mock-trackunit-react-core-hooks");
@@ -25,6 +26,7 @@ exports.rulesMap = {
25
26
  "cva-merge-base-classes-as-array": cva_merge_base_classes_as_array_1.cvaMergeBaseClassesAsArray,
26
27
  "no-internal-barrel-files": no_internal_barrel_files_1.noInternalBarrelFiles,
27
28
  "no-typescript-assertion": no_typescript_assertion_1.noTypescriptAssertion,
29
+ "no-deprecated-graphql-fields": no_deprecated_graphql_fields_1.noDeprecatedGraphqlFields,
28
30
  "no-internal-graphql-when-tagged-with-gql-public": no_internal_graphql_when_tagged_with_gql_public_1.noInternalGraphqlWhenTaggedWithGqlPublic,
29
31
  "design-guideline-button-icon-size-match": design_guideline_button_icon_size_match_1.designGuidelineButtonIconSizeMatch,
30
32
  "no-template-strings-in-classname-prop": no_template_strings_in_classname_prop_1.noTemplateStringsInClassName,