lint-suite 1.6.2 → 2.0.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 (207) hide show
  1. package/README.md +262 -18
  2. package/eslint.cjs +4027 -467
  3. package/eslint.cjs.map +4 -4
  4. package/eslint.js +3972 -350
  5. package/eslint.js.map +4 -4
  6. package/lib/angular-template.d.ts.map +1 -1
  7. package/lib/angular.d.ts +0 -1
  8. package/lib/angular.d.ts.map +1 -1
  9. package/lib/base-limits.d.ts.map +1 -1
  10. package/lib/base-practices.d.ts.map +1 -1
  11. package/lib/line-length.const.d.ts +2 -0
  12. package/lib/line-length.const.d.ts.map +1 -0
  13. package/lib/rules/arrow-body-fits-line/arrow-body-fits-line.d.ts +6 -0
  14. package/lib/rules/arrow-body-fits-line/arrow-body-fits-line.d.ts.map +1 -0
  15. package/lib/rules/chain-fits-line/chain-fits-line.d.ts +6 -0
  16. package/lib/rules/chain-fits-line/chain-fits-line.d.ts.map +1 -0
  17. package/lib/rules/chain-receiver-is-name/chain-receiver-is-name.d.ts +7 -0
  18. package/lib/rules/chain-receiver-is-name/chain-receiver-is-name.d.ts.map +1 -0
  19. package/lib/rules/common/class-usage.type.d.ts +26 -0
  20. package/lib/rules/common/class-usage.type.d.ts.map +1 -0
  21. package/lib/rules/common/file-cache.type.d.ts +11 -0
  22. package/lib/rules/common/file-cache.type.d.ts.map +1 -0
  23. package/lib/rules/common/glob-matcher.type.d.ts +2 -0
  24. package/lib/rules/common/glob-matcher.type.d.ts.map +1 -0
  25. package/lib/rules/component-metadata.d.ts +3 -0
  26. package/lib/rules/component-metadata.d.ts.map +1 -0
  27. package/lib/rules/explicit-accessibility/common/explicit-accessibility.const.d.ts +1 -1
  28. package/lib/rules/explicit-accessibility/common/explicit-accessibility.const.d.ts.map +1 -1
  29. package/lib/rules/explicit-accessibility/common/explicit-accessibility.type.d.ts +4 -1
  30. package/lib/rules/explicit-accessibility/common/explicit-accessibility.type.d.ts.map +1 -1
  31. package/lib/rules/file-cache.d.ts +14 -0
  32. package/lib/rules/file-cache.d.ts.map +1 -0
  33. package/lib/rules/max-condition-operands/max-condition-operands.d.ts +10 -0
  34. package/lib/rules/max-condition-operands/max-condition-operands.d.ts.map +1 -0
  35. package/lib/rules/no-call-in-condition/common/no-call-in-condition.const.d.ts +6 -0
  36. package/lib/rules/no-call-in-condition/common/no-call-in-condition.const.d.ts.map +1 -0
  37. package/lib/rules/no-call-in-condition/common/no-call-in-condition.type.d.ts +21 -0
  38. package/lib/rules/no-call-in-condition/common/no-call-in-condition.type.d.ts.map +1 -0
  39. package/lib/rules/no-call-in-condition/no-call-in-condition.d.ts +7 -0
  40. package/lib/rules/no-call-in-condition/no-call-in-condition.d.ts.map +1 -0
  41. package/lib/rules/no-call-in-condition/utils/call-exemptions.util.d.ts +4 -0
  42. package/lib/rules/no-call-in-condition/utils/call-exemptions.util.d.ts.map +1 -0
  43. package/lib/rules/no-call-in-condition/utils/condition-calls.util.d.ts +7 -0
  44. package/lib/rules/no-call-in-condition/utils/condition-calls.util.d.ts.map +1 -0
  45. package/lib/rules/no-grouped-condition/no-grouped-condition.d.ts +7 -0
  46. package/lib/rules/no-grouped-condition/no-grouped-condition.d.ts.map +1 -0
  47. package/lib/rules/no-inline-object-types/no-inline-object-types.d.ts.map +1 -1
  48. package/lib/rules/no-inline-return-object/no-inline-return-object.d.ts +6 -0
  49. package/lib/rules/no-inline-return-object/no-inline-return-object.d.ts.map +1 -0
  50. package/lib/rules/no-nested-object-value/common/no-nested-object-value.const.d.ts +5 -0
  51. package/lib/rules/no-nested-object-value/common/no-nested-object-value.const.d.ts.map +1 -0
  52. package/lib/rules/no-nested-object-value/common/no-nested-object-value.type.d.ts +7 -0
  53. package/lib/rules/no-nested-object-value/common/no-nested-object-value.type.d.ts.map +1 -0
  54. package/lib/rules/no-nested-object-value/no-nested-object-value.d.ts +7 -0
  55. package/lib/rules/no-nested-object-value/no-nested-object-value.d.ts.map +1 -0
  56. package/lib/rules/no-nested-object-value/utils/decorator-config.util.d.ts +3 -0
  57. package/lib/rules/no-nested-object-value/utils/decorator-config.util.d.ts.map +1 -0
  58. package/lib/rules/no-spread-expression/no-spread-expression.d.ts +6 -0
  59. package/lib/rules/no-spread-expression/no-spread-expression.d.ts.map +1 -0
  60. package/lib/rules/no-unstyled-classes/common/no-unstyled-classes.type.d.ts +33 -0
  61. package/lib/rules/no-unstyled-classes/common/no-unstyled-classes.type.d.ts.map +1 -0
  62. package/lib/rules/no-unstyled-classes/no-unstyled-classes.d.ts +8 -0
  63. package/lib/rules/no-unstyled-classes/no-unstyled-classes.d.ts.map +1 -0
  64. package/lib/rules/no-unstyled-classes/styles/component-stylesheets.d.ts +4 -0
  65. package/lib/rules/no-unstyled-classes/styles/component-stylesheets.d.ts.map +1 -0
  66. package/lib/rules/no-unstyled-classes/styles/linked-stylesheets.d.ts +3 -0
  67. package/lib/rules/no-unstyled-classes/styles/linked-stylesheets.d.ts.map +1 -0
  68. package/lib/rules/no-unstyled-classes/styles/stylesheet-classes.d.ts +3 -0
  69. package/lib/rules/no-unstyled-classes/styles/stylesheet-classes.d.ts.map +1 -0
  70. package/lib/rules/no-unstyled-classes/styles/stylesheet-collection.d.ts +4 -0
  71. package/lib/rules/no-unstyled-classes/styles/stylesheet-collection.d.ts.map +1 -0
  72. package/lib/rules/no-unstyled-classes/styles/stylesheet-imports.d.ts +2 -0
  73. package/lib/rules/no-unstyled-classes/styles/stylesheet-imports.d.ts.map +1 -0
  74. package/lib/rules/no-unstyled-classes/styles/template-stylesheets.d.ts +3 -0
  75. package/lib/rules/no-unstyled-classes/styles/template-stylesheets.d.ts.map +1 -0
  76. package/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-directive-index.d.ts +5 -0
  77. package/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-directive-index.d.ts.map +1 -1
  78. package/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-resolved-path.d.ts.map +1 -1
  79. package/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-read-resolution.d.ts +0 -1
  80. package/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-read-resolution.d.ts.map +1 -1
  81. package/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-reads.d.ts.map +1 -1
  82. package/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-references.d.ts.map +1 -1
  83. package/lib/rules/no-unused-angular-instance-fields/project-usage/common/project-index.type.d.ts +6 -8
  84. package/lib/rules/no-unused-angular-instance-fields/project-usage/common/project-index.type.d.ts.map +1 -1
  85. package/lib/rules/no-unused-angular-instance-fields/project-usage/common/project-usage.type.d.ts +3 -14
  86. package/lib/rules/no-unused-angular-instance-fields/project-usage/common/project-usage.type.d.ts.map +1 -1
  87. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-file-entry.d.ts.map +1 -1
  88. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-index-classes.d.ts +3 -2
  89. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-index-classes.d.ts.map +1 -1
  90. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-index-reconciliation.d.ts +1 -1
  91. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-index-reconciliation.d.ts.map +1 -1
  92. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-index-staleness.d.ts +8 -4
  93. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-index-staleness.d.ts.map +1 -1
  94. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-usage.d.ts +3 -2
  95. package/lib/rules/no-unused-angular-instance-fields/project-usage/project-usage.d.ts.map +1 -1
  96. package/lib/rules/no-unused-angular-instance-fields/project-usage/typescript/typescript-destructuring-reads.d.ts.map +1 -1
  97. package/lib/rules/no-unused-angular-instance-fields/project-usage/typescript/typescript-reads.d.ts.map +1 -1
  98. package/lib/rules/no-unused-angular-instance-fields/project-usage/utils/class-members.util.d.ts +10 -0
  99. package/lib/rules/no-unused-angular-instance-fields/project-usage/utils/class-members.util.d.ts.map +1 -0
  100. package/lib/rules/no-unused-angular-instance-fields/rule/angular/angular-class-fields.d.ts.map +1 -1
  101. package/lib/rules/no-unused-angular-instance-fields/rule/angular/angular-imports.d.ts.map +1 -1
  102. package/lib/rules/no-unused-angular-instance-fields/rule/angular/angular-managed-fields.d.ts.map +1 -1
  103. package/lib/rules/no-unused-angular-instance-fields/rule/angular/angular-metadata-literals.d.ts.map +1 -1
  104. package/lib/rules/no-unused-angular-instance-fields/rule/common/no-unused-angular-instance-fields.type.d.ts +2 -1
  105. package/lib/rules/no-unused-angular-instance-fields/rule/common/no-unused-angular-instance-fields.type.d.ts.map +1 -1
  106. package/lib/rules/no-unused-angular-instance-fields/rule/no-unused-angular-instance-fields.d.ts.map +1 -1
  107. package/lib/rules/no-unused-angular-instance-fields/rule/typescript/typescript-class-read-visitor.d.ts.map +1 -1
  108. package/lib/rules/no-unused-classes/common/no-unused-classes.type.d.ts +24 -0
  109. package/lib/rules/no-unused-classes/common/no-unused-classes.type.d.ts.map +1 -0
  110. package/lib/rules/no-unused-classes/no-unused-classes.d.ts +8 -0
  111. package/lib/rules/no-unused-classes/no-unused-classes.d.ts.map +1 -0
  112. package/lib/rules/no-unused-classes/styles/linked-templates.d.ts +9 -0
  113. package/lib/rules/no-unused-classes/styles/linked-templates.d.ts.map +1 -0
  114. package/lib/rules/no-unused-classes/styles/stylesheet-components.d.ts +3 -0
  115. package/lib/rules/no-unused-classes/styles/stylesheet-components.d.ts.map +1 -0
  116. package/lib/rules/no-unused-classes/template/template-usage.d.ts +3 -0
  117. package/lib/rules/no-unused-classes/template/template-usage.d.ts.map +1 -0
  118. package/lib/rules/no-unused-exports/common/no-unused-exports.const.d.ts +7 -0
  119. package/lib/rules/no-unused-exports/common/no-unused-exports.const.d.ts.map +1 -0
  120. package/lib/rules/no-unused-exports/common/no-unused-exports.type.d.ts +70 -0
  121. package/lib/rules/no-unused-exports/common/no-unused-exports.type.d.ts.map +1 -0
  122. package/lib/rules/no-unused-exports/export-index.d.ts +6 -0
  123. package/lib/rules/no-unused-exports/export-index.d.ts.map +1 -0
  124. package/lib/rules/no-unused-exports/no-unused-exports.d.ts +7 -0
  125. package/lib/rules/no-unused-exports/no-unused-exports.d.ts.map +1 -0
  126. package/lib/rules/no-unused-exports/report-unused-exports.d.ts +12 -0
  127. package/lib/rules/no-unused-exports/report-unused-exports.d.ts.map +1 -0
  128. package/lib/rules/no-unused-exports/utils/aggregate-update.util.d.ts +4 -0
  129. package/lib/rules/no-unused-exports/utils/aggregate-update.util.d.ts.map +1 -0
  130. package/lib/rules/no-unused-exports/utils/export-edges.util.d.ts +5 -0
  131. package/lib/rules/no-unused-exports/utils/export-edges.util.d.ts.map +1 -0
  132. package/lib/rules/no-unused-exports/utils/export-nodes.util.d.ts +5 -0
  133. package/lib/rules/no-unused-exports/utils/export-nodes.util.d.ts.map +1 -0
  134. package/lib/rules/no-unused-exports/utils/export-usage.util.d.ts +4 -0
  135. package/lib/rules/no-unused-exports/utils/export-usage.util.d.ts.map +1 -0
  136. package/lib/rules/no-unused-exports/utils/exported-names.util.d.ts +3 -0
  137. package/lib/rules/no-unused-exports/utils/exported-names.util.d.ts.map +1 -0
  138. package/lib/rules/no-unused-exports/utils/file-changes.util.d.ts +4 -0
  139. package/lib/rules/no-unused-exports/utils/file-changes.util.d.ts.map +1 -0
  140. package/lib/rules/no-unused-exports/utils/module-edges.util.d.ts +4 -0
  141. package/lib/rules/no-unused-exports/utils/module-edges.util.d.ts.map +1 -0
  142. package/lib/rules/no-unused-exports/utils/module-target.util.d.ts +4 -0
  143. package/lib/rules/no-unused-exports/utils/module-target.util.d.ts.map +1 -0
  144. package/lib/rules/no-unused-exports/utils/public-exports.util.d.ts +3 -0
  145. package/lib/rules/no-unused-exports/utils/public-exports.util.d.ts.map +1 -0
  146. package/lib/rules/one-line-guard/one-line-guard.d.ts +10 -0
  147. package/lib/rules/one-line-guard/one-line-guard.d.ts.map +1 -0
  148. package/lib/rules/readonly-type-properties/readonly-type-properties.d.ts +2 -1
  149. package/lib/rules/readonly-type-properties/readonly-type-properties.d.ts.map +1 -1
  150. package/lib/rules/selector-classes.d.ts +7 -0
  151. package/lib/rules/selector-classes.d.ts.map +1 -0
  152. package/lib/rules/ternary-branch-shape/ternary-branch-shape.d.ts +6 -0
  153. package/lib/rules/ternary-branch-shape/ternary-branch-shape.d.ts.map +1 -0
  154. package/lib/rules/test-file-shape/common/test-file-shape.const.d.ts +14 -0
  155. package/lib/rules/test-file-shape/common/test-file-shape.const.d.ts.map +1 -0
  156. package/lib/rules/test-file-shape/common/test-file-shape.type.d.ts +7 -0
  157. package/lib/rules/test-file-shape/common/test-file-shape.type.d.ts.map +1 -0
  158. package/lib/rules/test-file-shape/mock-exports.d.ts +7 -0
  159. package/lib/rules/test-file-shape/mock-exports.d.ts.map +1 -0
  160. package/lib/rules/test-file-shape/stub-exports.d.ts +7 -0
  161. package/lib/rules/test-file-shape/stub-exports.d.ts.map +1 -0
  162. package/lib/rules/test-file-shape/test-file-shape.d.ts +7 -0
  163. package/lib/rules/test-file-shape/test-file-shape.d.ts.map +1 -0
  164. package/lib/rules/type-placement/common/type-placement.const.d.ts +5 -0
  165. package/lib/rules/type-placement/common/type-placement.const.d.ts.map +1 -0
  166. package/lib/rules/type-placement/common/type-placement.type.d.ts +7 -0
  167. package/lib/rules/type-placement/common/type-placement.type.d.ts.map +1 -0
  168. package/lib/rules/type-placement/type-placement.d.ts +7 -0
  169. package/lib/rules/type-placement/type-placement.d.ts.map +1 -0
  170. package/lib/rules/util-purity/common/util-purity.const.d.ts +10 -0
  171. package/lib/rules/util-purity/common/util-purity.const.d.ts.map +1 -0
  172. package/lib/rules/util-purity/common/util-purity.type.d.ts +7 -0
  173. package/lib/rules/util-purity/common/util-purity.type.d.ts.map +1 -0
  174. package/lib/rules/util-purity/util-purity.d.ts +7 -0
  175. package/lib/rules/util-purity/util-purity.d.ts.map +1 -0
  176. package/lib/rules/utils/class-expression-literals.util.d.ts +4 -0
  177. package/lib/rules/utils/class-expression-literals.util.d.ts.map +1 -0
  178. package/lib/rules/utils/enclosing-statement.util.d.ts +3 -0
  179. package/lib/rules/utils/enclosing-statement.util.d.ts.map +1 -0
  180. package/lib/rules/utils/glob-matcher.util.d.ts +3 -0
  181. package/lib/rules/utils/glob-matcher.util.d.ts.map +1 -0
  182. package/lib/rules/utils/indent-of.util.d.ts +3 -0
  183. package/lib/rules/utils/indent-of.util.d.ts.map +1 -0
  184. package/lib/rules/utils/resolved-rules.util.d.ts +5 -0
  185. package/lib/rules/utils/resolved-rules.util.d.ts.map +1 -0
  186. package/lib/rules/utils/template-classes.util.d.ts +3 -0
  187. package/lib/rules/utils/template-classes.util.d.ts.map +1 -0
  188. package/lib/rules/utils/template-links.util.d.ts +2 -0
  189. package/lib/rules/utils/template-links.util.d.ts.map +1 -0
  190. package/lib/rules/utils/to-regexp.util.d.ts +2 -0
  191. package/lib/rules/utils/to-regexp.util.d.ts.map +1 -0
  192. package/lib/typescript-local-plugin.d.ts.map +1 -1
  193. package/lib/typescript-safety.d.ts.map +1 -1
  194. package/lib/typescript.d.ts +0 -1
  195. package/lib/typescript.d.ts.map +1 -1
  196. package/lib/vitest.d.ts.map +1 -1
  197. package/package.json +4 -1
  198. package/prettier.cjs +6 -1
  199. package/prettier.cjs.map +3 -3
  200. package/prettier.d.ts.map +1 -1
  201. package/prettier.js +4 -1
  202. package/prettier.js.map +3 -3
  203. package/stylelint.cjs +884 -4
  204. package/stylelint.cjs.map +4 -4
  205. package/stylelint.d.ts.map +1 -1
  206. package/stylelint.js +918 -4
  207. package/stylelint.js.map +4 -4
@@ -1 +1 @@
1
- {"version":3,"file":"angular-template.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/angular-template.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe,wCAsD1B,CAAC"}
1
+ {"version":3,"file":"angular-template.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/angular-template.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,eAAe,wCAkE1B,CAAC"}
package/lib/angular.d.ts CHANGED
@@ -1,3 +1,2 @@
1
- export declare const lintSuiteAngularPlugin: import("typescript-eslint").CompatiblePlugin;
2
1
  export declare const angular: import("eslint/config").ConfigObject[];
3
2
  //# sourceMappingURL=angular.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"angular.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/angular.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,sBAAsB,8CAEjC,CAAC;AAEH,eAAO,MAAM,OAAO,wCA4ClB,CAAC"}
1
+ {"version":3,"file":"angular.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/angular.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,OAAO,wCAgDlB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"base-limits.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/base-limits.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,wCA0DrB,CAAC"}
1
+ {"version":3,"file":"base-limits.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/base-limits.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,wCAyDrB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"base-practices.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/base-practices.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,wCAoHxB,CAAC"}
1
+ {"version":3,"file":"base-practices.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/base-practices.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,aAAa,wCAoHxB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const MAX_LINE_LENGTH = 135;
2
+ //# sourceMappingURL=line-length.const.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"line-length.const.d.ts","sourceRoot":"","sources":["../../../../../packages/lint-suite/src/lib/line-length.const.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,MAAM,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ declare const _default: ESLintUtils.RuleModule<"arrowBodyWrapped", [], unknown, ESLintUtils.RuleListener> & {
3
+ name: string;
4
+ };
5
+ export default _default;
6
+ //# sourceMappingURL=arrow-body-fits-line.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"arrow-body-fits-line.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/arrow-body-fits-line/arrow-body-fits-line.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,WAAW,EAAY,MAAM,0BAA0B,CAAC;;;;AAiE3E,wBAqCG"}
@@ -0,0 +1,6 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ declare const _default: ESLintUtils.RuleModule<"chainWrapped", [], unknown, ESLintUtils.RuleListener> & {
3
+ name: string;
4
+ };
5
+ export default _default;
6
+ //# sourceMappingURL=chain-fits-line.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chain-fits-line.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/chain-fits-line/chain-fits-line.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;;;;AAyDjE,wBAiCG"}
@@ -0,0 +1,7 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ type MessageIds = 'chainReceiver' | 'extractReceiver';
3
+ declare const _default: ESLintUtils.RuleModule<MessageIds, [], unknown, ESLintUtils.RuleListener> & {
4
+ name: string;
5
+ };
6
+ export default _default;
7
+ //# sourceMappingURL=chain-receiver-is-name.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chain-receiver-is-name.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/chain-receiver-is-name/chain-receiver-is-name.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;AAMjE,KAAK,UAAU,GAAG,eAAe,GAAG,iBAAiB,CAAC;;;;AAyEtD,wBA0BG"}
@@ -0,0 +1,26 @@
1
+ import type { ParseSourceSpan, TmplAstBoundAttribute, TmplAstTextAttribute } from '@angular/compiler';
2
+ export type ClassAttributeHost = {
3
+ readonly attributes: TmplAstTextAttribute[];
4
+ readonly inputs: TmplAstBoundAttribute[];
5
+ };
6
+ export type TemplateClass = {
7
+ readonly name: string;
8
+ readonly span: ParseSourceSpan;
9
+ };
10
+ export type SelectorClasses = {
11
+ readonly exact: string[];
12
+ readonly patterns: string[];
13
+ };
14
+ export type ClassExpressionUsage = {
15
+ readonly names: string[];
16
+ readonly patterns: string[];
17
+ readonly isDynamic: boolean;
18
+ };
19
+ export type ClassMatcher = (name: string) => boolean;
20
+ export type ComponentDescriptor = {
21
+ readonly templateUrl: string | null;
22
+ readonly template: string | null;
23
+ readonly styleUrls: string[];
24
+ readonly styles: string[];
25
+ };
26
+ //# sourceMappingURL=class-usage.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"class-usage.type.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/common/class-usage.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,mBAAmB,CAAC;AAE3B,MAAM,MAAM,kBAAkB,GAAG;IAC/B,QAAQ,CAAC,UAAU,EAAE,oBAAoB,EAAE,CAAC;IAC5C,QAAQ,CAAC,MAAM,EAAE,qBAAqB,EAAE,CAAC;CAC1C,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,EAAE,eAAe,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,CAAC;IACzB,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,CAAC;IACzB,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,CAAC;IAC5B,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC;AAErD,MAAM,MAAM,mBAAmB,GAAG;IAChC,QAAQ,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,QAAQ,CAAC,SAAS,EAAE,MAAM,EAAE,CAAC;IAC7B,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC;CAC3B,CAAC"}
@@ -0,0 +1,11 @@
1
+ export type CachedFile<T> = {
2
+ readonly value: T;
3
+ readonly version: string;
4
+ };
5
+ export type FileCache<T> = {
6
+ readonly name: string;
7
+ readonly entries: Map<string, CachedFile<T>>;
8
+ loaded: boolean;
9
+ dirty: boolean;
10
+ };
11
+ //# sourceMappingURL=file-cache.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-cache.type.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/common/file-cache.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,CAAC,CAAC,IAAI;IAC1B,QAAQ,CAAC,KAAK,EAAE,CAAC,CAAC;IAClB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI;IACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,OAAO,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC;IAE7C,MAAM,EAAE,OAAO,CAAC;IAEhB,KAAK,EAAE,OAAO,CAAC;CAChB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export type GlobMatcher = (path: string) => boolean;
2
+ //# sourceMappingURL=glob-matcher.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"glob-matcher.type.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/common/glob-matcher.type.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { ComponentDescriptor } from './common/class-usage.type.ts';
2
+ export declare const componentMetadata: (path: string) => ComponentDescriptor[];
3
+ //# sourceMappingURL=component-metadata.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component-metadata.d.ts","sourceRoot":"","sources":["../../../../../../packages/lint-suite/src/lib/rules/component-metadata.ts"],"names":[],"mappings":"AAoBA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AA0IxE,eAAO,MAAM,iBAAiB,GAAI,MAAM,MAAM,KAAG,mBAAmB,EAEnE,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import type { ESLintUtils } from '@typescript-eslint/utils';
2
2
  import type { Accessibility, MessageIds, Options } from './explicit-accessibility.type.ts';
3
- export declare const accessibilities: readonly Accessibility[];
3
+ export declare const accessibilities: Accessibility[];
4
4
  export declare const meta: ESLintUtils.NamedCreateRuleMeta<MessageIds, unknown, Options>;
5
5
  export declare const defaultOptions: Options;
6
6
  //# sourceMappingURL=explicit-accessibility.const.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"explicit-accessibility.const.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/explicit-accessibility/common/explicit-accessibility.const.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,WAAW,EAGZ,MAAM,0BAA0B,CAAC;AAElC,OAAO,KAAK,EACV,aAAa,EACb,UAAU,EACV,OAAO,EACR,MAAM,kCAAkC,CAAC;AAE1C,eAAO,MAAM,eAAe,EAAE,SAAS,aAAa,EAInD,CAAC;AA+BF,eAAO,MAAM,IAAI,EAAE,WAAW,CAAC,mBAAmB,CAChD,UAAU,EACV,OAAO,EACP,OAAO,CAQR,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,OAA8C,CAAC"}
1
+ {"version":3,"file":"explicit-accessibility.const.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/explicit-accessibility/common/explicit-accessibility.const.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,WAAW,EAGZ,MAAM,0BAA0B,CAAC;AAElC,OAAO,KAAK,EACV,aAAa,EACb,UAAU,EACV,OAAO,EACR,MAAM,kCAAkC,CAAC;AAE1C,eAAO,MAAM,eAAe,EAAE,aAAa,EAI1C,CAAC;AA+BF,eAAO,MAAM,IAAI,EAAE,WAAW,CAAC,mBAAmB,CAChD,UAAU,EACV,OAAO,EACP,OAAO,CAQR,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,OAA8C,CAAC"}
@@ -1,7 +1,8 @@
1
1
  import type { TSESLint, TSESTree } from '@typescript-eslint/utils';
2
+ import type { RuleTester } from 'eslint';
2
3
  export type Accessibility = 'private' | 'protected' | 'public';
3
4
  export type FixAccessibility = Accessibility | 'none';
4
- export type AccessibilityOptions = {
5
+ type AccessibilityOptions = {
5
6
  readonly defaultAccessibility?: FixAccessibility;
6
7
  };
7
8
  export type Options = [AccessibilityOptions];
@@ -11,4 +12,6 @@ export type Fix = (fixer: TSESLint.RuleFixer) => TSESLint.RuleFix | null;
11
12
  export type AutoFix = {
12
13
  readonly fix?: Fix;
13
14
  };
15
+ export type MemberCase = Omit<RuleTester.InvalidTestCase, 'name'>;
16
+ export {};
14
17
  //# sourceMappingURL=explicit-accessibility.type.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"explicit-accessibility.type.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/explicit-accessibility/common/explicit-accessibility.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEnE,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;AAE/D,MAAM,MAAM,gBAAgB,GAAG,aAAa,GAAG,MAAM,CAAC;AAEtD,MAAM,MAAM,oBAAoB,GAAG;IACjC,QAAQ,CAAC,oBAAoB,CAAC,EAAE,gBAAgB,CAAC;CAClD,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAE7C,MAAM,MAAM,UAAU,GAAG,sBAAsB,GAAG,kBAAkB,CAAC;AAErE,MAAM,MAAM,MAAM,GACd,QAAQ,CAAC,gBAAgB,GACzB,QAAQ,CAAC,gBAAgB,GACzB,QAAQ,CAAC,kBAAkB,GAC3B,QAAQ,CAAC,0BAA0B,GACnC,QAAQ,CAAC,0BAA0B,GACnC,QAAQ,CAAC,4BAA4B,GACrC,QAAQ,CAAC,mBAAmB,CAAC;AAEjC,MAAM,MAAM,GAAG,GAAG,CAAC,KAAK,EAAE,QAAQ,CAAC,SAAS,KAAK,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC;AAEzE,MAAM,MAAM,OAAO,GAAG;IAAE,QAAQ,CAAC,GAAG,CAAC,EAAE,GAAG,CAAA;CAAE,CAAC"}
1
+ {"version":3,"file":"explicit-accessibility.type.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/explicit-accessibility/common/explicit-accessibility.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACnE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AAEzC,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAC;AAE/D,MAAM,MAAM,gBAAgB,GAAG,aAAa,GAAG,MAAM,CAAC;AAEtD,KAAK,oBAAoB,GAAG;IAC1B,QAAQ,CAAC,oBAAoB,CAAC,EAAE,gBAAgB,CAAC;CAClD,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG,CAAC,oBAAoB,CAAC,CAAC;AAE7C,MAAM,MAAM,UAAU,GAAG,sBAAsB,GAAG,kBAAkB,CAAC;AAErE,MAAM,MAAM,MAAM,GACd,QAAQ,CAAC,gBAAgB,GACzB,QAAQ,CAAC,gBAAgB,GACzB,QAAQ,CAAC,kBAAkB,GAC3B,QAAQ,CAAC,0BAA0B,GACnC,QAAQ,CAAC,0BAA0B,GACnC,QAAQ,CAAC,4BAA4B,GACrC,QAAQ,CAAC,mBAAmB,CAAC;AAEjC,MAAM,MAAM,GAAG,GAAG,CAAC,KAAK,EAAE,QAAQ,CAAC,SAAS,KAAK,QAAQ,CAAC,OAAO,GAAG,IAAI,CAAC;AAEzE,MAAM,MAAM,OAAO,GAAG;IAAE,QAAQ,CAAC,GAAG,CAAC,EAAE,GAAG,CAAA;CAAE,CAAC;AAG7C,MAAM,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,eAAe,EAAE,MAAM,CAAC,CAAC"}
@@ -0,0 +1,14 @@
1
+ import type { FileCache } from './common/file-cache.type.ts';
2
+ type FileParser<T> = (text: string, path: string) => T;
3
+ /** Writes every cache that parsed something this run; runs at process exit. */
4
+ export declare const flushFileCaches: () => void;
5
+ /**
6
+ * A cache of parsed files keyed by path and mtime, mirrored to
7
+ * `node_modules/.cache/lint-suite/<name>.v<format>.json` (or
8
+ * `LINT_SUITE_CACHE_DIR`; `LINT_SUITE_CACHE=0` disables the disk copy).
9
+ * Values must survive JSON.
10
+ */
11
+ export declare const createFileCache: <T>(name: string) => FileCache<T>;
12
+ export declare const readCached: <T>(cache: FileCache<T>, path: string, parse: FileParser<T>) => T | null;
13
+ export {};
14
+ //# sourceMappingURL=file-cache.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-cache.d.ts","sourceRoot":"","sources":["../../../../../../packages/lint-suite/src/lib/rules/file-cache.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAc,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAEzE,KAAK,UAAU,CAAC,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC,CAAC;AAqFvD,+EAA+E;AAE/E,eAAO,MAAM,eAAe,QAAO,IAOlC,CAAC;AASF;;;;;GAKG;AACH,eAAO,MAAM,eAAe,GAAI,CAAC,EAAE,MAAM,MAAM,KAAG,SAAS,CAAC,CAAC,CAY5D,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,CAAC,EAC1B,OAAO,SAAS,CAAC,CAAC,CAAC,EACnB,MAAM,MAAM,EACZ,OAAO,UAAU,CAAC,CAAC,CAAC,KACnB,CAAC,GAAG,IAoBN,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ type MaxConditionOperandsOptions = {
3
+ readonly max: number;
4
+ };
5
+ type Options = [MaxConditionOperandsOptions];
6
+ declare const _default: ESLintUtils.RuleModule<"tooManyOperands", Options, unknown, ESLintUtils.RuleListener> & {
7
+ name: string;
8
+ };
9
+ export default _default;
10
+ //# sourceMappingURL=max-condition-operands.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"max-condition-operands.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/max-condition-operands/max-condition-operands.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;AAGjE,KAAK,2BAA2B,GAAG;IAAE,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAC;AAC5D,KAAK,OAAO,GAAG,CAAC,2BAA2B,CAAC,CAAC;;;;AA8C7C,wBAwBG"}
@@ -0,0 +1,6 @@
1
+ import type { ESLintUtils } from '@typescript-eslint/utils';
2
+ import type { MessageIds, Options } from './no-call-in-condition.type.ts';
3
+ export declare const PREDICATE_PATTERNS: string[];
4
+ export declare const meta: ESLintUtils.NamedCreateRuleMeta<MessageIds, unknown, Options>;
5
+ export declare const defaultOptions: Options;
6
+ //# sourceMappingURL=no-call-in-condition.const.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-call-in-condition.const.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-call-in-condition/common/no-call-in-condition.const.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,WAAW,EAGZ,MAAM,0BAA0B,CAAC;AAElC,OAAO,KAAK,EACV,UAAU,EACV,OAAO,EAER,MAAM,gCAAgC,CAAC;AAExC,eAAO,MAAM,kBAAkB,EAAE,MAAM,EAAuB,CAAC;AAkC/D,eAAO,MAAM,IAAI,EAAE,WAAW,CAAC,mBAAmB,CAChD,UAAU,EACV,OAAO,EACP,OAAO,CAOR,CAAC;AAMF,eAAO,MAAM,cAAc,EAAE,OAAwB,CAAC"}
@@ -0,0 +1,21 @@
1
+ import type { ParserServicesWithTypeInformation, TSESLint, TSESTree } from '@typescript-eslint/utils';
2
+ export type CallExemptions = {
3
+ readonly allowed: RegExp[];
4
+ readonly scope: TSESLint.Scope.Scope;
5
+ readonly services: ParserServicesWithTypeInformation | undefined;
6
+ };
7
+ export type ConditionParts = {
8
+ readonly calls: TSESTree.CallExpression[];
9
+ readonly identifiers: TSESTree.Identifier[];
10
+ };
11
+ export type ConstFeed = {
12
+ readonly init: TSESTree.Expression;
13
+ readonly statement: TSESTree.VariableDeclaration;
14
+ };
15
+ export type MessageIds = 'callInCondition' | 'hoistCall';
16
+ export type RuleOptions = {
17
+ readonly allowPredicates?: string[];
18
+ };
19
+ export type Options = [RuleOptions];
20
+ export type RuleContext = TSESLint.RuleContext<MessageIds, Options>;
21
+ //# sourceMappingURL=no-call-in-condition.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-call-in-condition.type.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-call-in-condition/common/no-call-in-condition.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iCAAiC,EACjC,QAAQ,EACR,QAAQ,EACT,MAAM,0BAA0B,CAAC;AAElC,MAAM,MAAM,cAAc,GAAG;IAC3B,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC;IAC3B,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC;IACrC,QAAQ,CAAC,QAAQ,EAAE,iCAAiC,GAAG,SAAS,CAAC;CAClE,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC3B,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,cAAc,EAAE,CAAC;IAC1C,QAAQ,CAAC,WAAW,EAAE,QAAQ,CAAC,UAAU,EAAE,CAAC;CAC7C,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,UAAU,CAAC;IACnC,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC,mBAAmB,CAAC;CAClD,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,iBAAiB,GAAG,WAAW,CAAC;AAEzD,MAAM,MAAM,WAAW,GAAG;IACxB,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;CACrC,CAAC;AAEF,MAAM,MAAM,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;AAEpC,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,WAAW,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ import type { MessageIds, Options } from './common/no-call-in-condition.type.ts';
3
+ declare const _default: ESLintUtils.RuleModule<MessageIds, Options, unknown, ESLintUtils.RuleListener> & {
4
+ name: string;
5
+ };
6
+ export default _default;
7
+ //# sourceMappingURL=no-call-in-condition.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-call-in-condition.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/no-call-in-condition/no-call-in-condition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;AAWjE,OAAO,KAAK,EAEV,UAAU,EACV,OAAO,EAER,MAAM,uCAAuC,CAAC;;;;AAoG/C,wBA0DG"}
@@ -0,0 +1,4 @@
1
+ import { TSESTree } from '@typescript-eslint/utils';
2
+ import type { CallExemptions } from '../common/no-call-in-condition.type.ts';
3
+ export declare const isExemptCall: (call: TSESTree.CallExpression, exemptions: CallExemptions) => boolean;
4
+ //# sourceMappingURL=call-exemptions.util.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"call-exemptions.util.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-call-in-condition/utils/call-exemptions.util.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAQ9D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wCAAwC,CAAC;AAsF7E,eAAO,MAAM,YAAY,GACvB,MAAM,QAAQ,CAAC,cAAc,EAC7B,YAAY,cAAc,KACzB,OAcF,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { TSESTree } from '@typescript-eslint/utils';
2
+ import type { TSESLint } from '@typescript-eslint/utils';
3
+ import type { ConditionParts, ConstFeed } from '../common/no-call-in-condition.type.ts';
4
+ export declare const conditionParts: (node: TSESTree.Node) => ConditionParts;
5
+ export declare const calleeName: (callee: TSESTree.Node) => string | undefined;
6
+ export declare const constFeed: (identifier: TSESTree.Identifier, scope: TSESLint.Scope.Scope) => ConstFeed | undefined;
7
+ //# sourceMappingURL=condition-calls.util.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"condition-calls.util.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-call-in-condition/utils/condition-calls.util.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEzD,OAAO,KAAK,EACV,cAAc,EACd,SAAS,EACV,MAAM,wCAAwC,CAAC;AA8BhD,eAAO,MAAM,cAAc,GAAI,MAAM,QAAQ,CAAC,IAAI,KAAG,cAMpD,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,QAAQ,QAAQ,CAAC,IAAI,KAAG,MAAM,GAAG,SAY3D,CAAC;AAEF,eAAO,MAAM,SAAS,GACpB,YAAY,QAAQ,CAAC,UAAU,EAC/B,OAAO,QAAQ,CAAC,KAAK,CAAC,KAAK,KAC1B,SAAS,GAAG,SAgCd,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ type MessageIds = 'groupedCondition' | 'hoistGroup';
3
+ declare const _default: ESLintUtils.RuleModule<MessageIds, [], unknown, ESLintUtils.RuleListener> & {
4
+ name: string;
5
+ };
6
+ export default _default;
7
+ //# sourceMappingURL=no-grouped-condition.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-grouped-condition.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/no-grouped-condition/no-grouped-condition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;AAIjE,KAAK,UAAU,GAAG,kBAAkB,GAAG,YAAY,CAAC;;;;AA4FpD,wBAwCG"}
@@ -1 +1 @@
1
- {"version":3,"file":"no-inline-object-types.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/no-inline-object-types/no-inline-object-types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;;;;AA2CjE,wBA2BG"}
1
+ {"version":3,"file":"no-inline-object-types.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/no-inline-object-types/no-inline-object-types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;;;;AA2BjE,wBAuBG"}
@@ -0,0 +1,6 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ declare const _default: ESLintUtils.RuleModule<"inlineReturnObject", [], unknown, ESLintUtils.RuleListener> & {
3
+ name: string;
4
+ };
5
+ export default _default;
6
+ //# sourceMappingURL=no-inline-return-object.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-inline-return-object.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/no-inline-return-object/no-inline-return-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;;;;AAwFjE,wBA0CG"}
@@ -0,0 +1,5 @@
1
+ import type { ESLintUtils } from '@typescript-eslint/utils';
2
+ import type { MessageIds, Options } from './no-nested-object-value.type.ts';
3
+ export declare const meta: ESLintUtils.NamedCreateRuleMeta<MessageIds, unknown, Options>;
4
+ export declare const defaultOptions: Options;
5
+ //# sourceMappingURL=no-nested-object-value.const.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-nested-object-value.const.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-nested-object-value/common/no-nested-object-value.const.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,WAAW,EAGZ,MAAM,0BAA0B,CAAC;AAElC,OAAO,KAAK,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,kCAAkC,CAAC;AAqC5E,eAAO,MAAM,IAAI,EAAE,WAAW,CAAC,mBAAmB,CAChD,UAAU,EACV,OAAO,EACP,OAAO,CAOR,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,OAAiD,CAAC"}
@@ -0,0 +1,7 @@
1
+ type NestedObjectValueOptions = {
2
+ readonly configFiles: string[];
3
+ };
4
+ export type Options = [NestedObjectValueOptions];
5
+ export type MessageIds = 'nestedValue';
6
+ export {};
7
+ //# sourceMappingURL=no-nested-object-value.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-nested-object-value.type.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-nested-object-value/common/no-nested-object-value.type.ts"],"names":[],"mappings":"AAAA,KAAK,wBAAwB,GAAG;IAAE,QAAQ,CAAC,WAAW,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC;AAEnE,MAAM,MAAM,OAAO,GAAG,CAAC,wBAAwB,CAAC,CAAC;AAEjD,MAAM,MAAM,UAAU,GAAG,aAAa,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ import type { Options } from './common/no-nested-object-value.type.ts';
3
+ declare const _default: ESLintUtils.RuleModule<"nestedValue", Options, unknown, ESLintUtils.RuleListener> & {
4
+ name: string;
5
+ };
6
+ export default _default;
7
+ //# sourceMappingURL=no-nested-object-value.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-nested-object-value.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/no-nested-object-value/no-nested-object-value.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;AAMjE,OAAO,KAAK,EAEV,OAAO,EACR,MAAM,yCAAyC,CAAC;;;;AAwGjD,wBAgDG"}
@@ -0,0 +1,3 @@
1
+ import { TSESTree } from '@typescript-eslint/utils';
2
+ export declare const isInsideDecoratorConfig: (objectExpression: TSESTree.ObjectExpression, ancestors: TSESTree.Node[]) => boolean;
3
+ //# sourceMappingURL=decorator-config.util.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"decorator-config.util.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-nested-object-value/utils/decorator-config.util.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAcpD,eAAO,MAAM,uBAAuB,GAClC,kBAAkB,QAAQ,CAAC,gBAAgB,EAC3C,WAAW,QAAQ,CAAC,IAAI,EAAE,KACzB,OAqBF,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ declare const _default: ESLintUtils.RuleModule<"spreadExpression", [], unknown, ESLintUtils.RuleListener> & {
3
+ name: string;
4
+ };
5
+ export default _default;
6
+ //# sourceMappingURL=no-spread-expression.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-spread-expression.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/no-spread-expression/no-spread-expression.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAY,MAAM,0BAA0B,CAAC;;;;AAoCjE,wBA0CG"}
@@ -0,0 +1,33 @@
1
+ import type { ParseSourceSpan } from '@angular/compiler';
2
+ import type { TSESTree } from '@typescript-eslint/utils';
3
+ import type { ClassMatcher } from '../../common/class-usage.type.ts';
4
+ export type RuleOptions = {
5
+ readonly ignoreClassPatterns: string[];
6
+ readonly globalStyles: string[];
7
+ };
8
+ export type MessageIds = 'unstyledClass';
9
+ type FileStylesheet = {
10
+ readonly kind: 'file';
11
+ readonly path: string;
12
+ };
13
+ type InlineStylesheet = {
14
+ readonly kind: 'inline';
15
+ readonly source: string;
16
+ readonly path: string;
17
+ };
18
+ export type StylesheetSource = FileStylesheet | InlineStylesheet;
19
+ export type StylesheetEntry = {
20
+ readonly classes: string[];
21
+ readonly patterns: string[];
22
+ readonly imports: string[];
23
+ };
24
+ export type StylesheetClasses = {
25
+ readonly has: ClassMatcher;
26
+ readonly size: number;
27
+ };
28
+ export type StylesheetLookup = () => StylesheetClasses;
29
+ export type TemplateParserServices = {
30
+ readonly convertNodeSourceSpanToLoc: (span: ParseSourceSpan) => TSESTree.SourceLocation;
31
+ };
32
+ export {};
33
+ //# sourceMappingURL=no-unstyled-classes.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-unstyled-classes.type.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-unstyled-classes/common/no-unstyled-classes.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEzD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAErE,MAAM,MAAM,WAAW,GAAG;IACxB,QAAQ,CAAC,mBAAmB,EAAE,MAAM,EAAE,CAAC;IACvC,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,eAAe,CAAC;AAEzC,KAAK,cAAc,GAAG;IACpB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,KAAK,gBAAgB,GAAG;IACtB,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IACxB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,cAAc,GAAG,gBAAgB,CAAC;AAEjE,MAAM,MAAM,eAAe,GAAG;IAC5B,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC;IAC3B,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,CAAC;IAC5B,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC;CAC5B,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,QAAQ,CAAC,GAAG,EAAE,YAAY,CAAC;IAC3B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,MAAM,iBAAiB,CAAC;AAEvD,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,CAAC,0BAA0B,EAAE,CACnC,IAAI,EAAE,eAAe,KAClB,QAAQ,CAAC,cAAc,CAAC;CAC9B,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { ESLintUtils } from '@typescript-eslint/utils';
2
+ import type { RuleOptions } from './common/no-unstyled-classes.type.ts';
3
+ type Options = [RuleOptions];
4
+ declare const _default: ESLintUtils.RuleModule<"unstyledClass", Options, unknown, ESLintUtils.RuleListener> & {
5
+ name: string;
6
+ };
7
+ export default _default;
8
+ //# sourceMappingURL=no-unstyled-classes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"no-unstyled-classes.d.ts","sourceRoot":"","sources":["../../../../../../../packages/lint-suite/src/lib/rules/no-unstyled-classes/no-unstyled-classes.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAGvD,OAAO,KAAK,EAEV,WAAW,EAEZ,MAAM,sCAAsC,CAAC;AAK9C,KAAK,OAAO,GAAG,CAAC,WAAW,CAAC,CAAC;;;;AAoE7B,wBAwDG"}
@@ -0,0 +1,4 @@
1
+ import type { StylesheetSource } from '../common/no-unstyled-classes.type.ts';
2
+ export declare const stylesheetFiles: (paths: string[], directory: string) => StylesheetSource[];
3
+ export declare const componentStylesheets: (templateFilename: string) => StylesheetSource[];
4
+ //# sourceMappingURL=component-stylesheets.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component-stylesheets.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-unstyled-classes/styles/component-stylesheets.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AA0C9E,eAAO,MAAM,eAAe,GAC1B,OAAO,MAAM,EAAE,EACf,WAAW,MAAM,KAChB,gBAAgB,EAelB,CAAC;AA0CF,eAAO,MAAM,oBAAoB,GAC/B,kBAAkB,MAAM,KACvB,gBAAgB,EAOlB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { StylesheetSource } from '../common/no-unstyled-classes.type.ts';
2
+ export declare const linkedStylesheets: (template: string, templateFilename: string) => StylesheetSource[];
3
+ //# sourceMappingURL=linked-stylesheets.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"linked-stylesheets.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-unstyled-classes/styles/linked-stylesheets.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AAE9E,eAAO,MAAM,iBAAiB,GAC5B,UAAU,MAAM,EAChB,kBAAkB,MAAM,KACvB,gBAAgB,EAIlB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { StylesheetClasses, StylesheetSource } from '../common/no-unstyled-classes.type.ts';
2
+ export declare const stylesheetClasses: (sources: StylesheetSource[]) => StylesheetClasses;
3
+ //# sourceMappingURL=stylesheet-classes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stylesheet-classes.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-unstyled-classes/styles/stylesheet-classes.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EACV,iBAAiB,EAEjB,gBAAgB,EACjB,MAAM,uCAAuC,CAAC;AA2H/C,eAAO,MAAM,iBAAiB,GAC5B,SAAS,gBAAgB,EAAE,KAC1B,iBAiBF,CAAC"}
@@ -0,0 +1,4 @@
1
+ import type { Root } from 'postcss';
2
+ import type { StylesheetEntry } from '../common/no-unstyled-classes.type.ts';
3
+ export declare const collectStylesheet: (root: Root, directory: string) => StylesheetEntry;
4
+ //# sourceMappingURL=stylesheet-collection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stylesheet-collection.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-unstyled-classes/styles/stylesheet-collection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAU,IAAI,EAAQ,MAAM,SAAS,CAAC;AAKlD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AA2B7E,eAAO,MAAM,iBAAiB,GAC5B,MAAM,IAAI,EACV,WAAW,MAAM,KAChB,eAaF,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const resolveStylesheetImport: (params: string, directory: string) => string | null;
2
+ //# sourceMappingURL=stylesheet-imports.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stylesheet-imports.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-unstyled-classes/styles/stylesheet-imports.ts"],"names":[],"mappings":"AA2CA,eAAO,MAAM,uBAAuB,GAClC,QAAQ,MAAM,EACd,WAAW,MAAM,KAChB,MAAM,GAAG,IAcX,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { StylesheetLookup } from '../common/no-unstyled-classes.type.ts';
2
+ export declare const templateStylesheets: (templateFilename: string, template: string, cwd: string, globalStyles: string[]) => StylesheetLookup;
3
+ //# sourceMappingURL=template-stylesheets.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"template-stylesheets.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/lint-suite/src/lib/rules/no-unstyled-classes/styles/template-stylesheets.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAEV,gBAAgB,EAEjB,MAAM,uCAAuC,CAAC;AAE/C,eAAO,MAAM,mBAAmB,GAC9B,kBAAkB,MAAM,EACxB,UAAU,MAAM,EAChB,KAAK,MAAM,EACX,cAAc,MAAM,EAAE,KACrB,gBAiBF,CAAC"}
@@ -1,4 +1,9 @@
1
1
  import type { AngularClass, DirectiveIndex } from '../common/project-usage.type.ts';
2
2
  export declare const directiveShape: (classes: Iterable<AngularClass>) => string;
3
3
  export declare const buildDirectiveIndex: (classes: Iterable<AngularClass>) => DirectiveIndex;
4
+ /**
5
+ * Points the index at a re-parsed file's class declarations without
6
+ * rebuilding it; only valid when the file's directive shape is unchanged.
7
+ */
8
+ export declare const replaceDeclarations: (index: DirectiveIndex, previous: Iterable<AngularClass>, next: Iterable<AngularClass>) => void;
4
9
  //# sourceMappingURL=angular-directive-index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"angular-directive-index.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-directive-index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,YAAY,EACZ,cAAc,EACf,MAAM,iCAAiC,CAAC;AA0BzC,eAAO,MAAM,cAAc,GAAI,SAAS,QAAQ,CAAC,YAAY,CAAC,KAAG,MAIhE,CAAC;AAUF,eAAO,MAAM,mBAAmB,GAC9B,SAAS,QAAQ,CAAC,YAAY,CAAC,KAC9B,cAiCF,CAAC"}
1
+ {"version":3,"file":"angular-directive-index.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-directive-index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,YAAY,EACZ,cAAc,EACf,MAAM,iCAAiC,CAAC;AAsBzC,eAAO,MAAM,cAAc,GAAI,SAAS,QAAQ,CAAC,YAAY,CAAC,KAAG,MAKhE,CAAC;AA8BF,eAAO,MAAM,mBAAmB,GAC9B,SAAS,QAAQ,CAAC,YAAY,CAAC,KAC9B,cAwCF,CAAC;AAcF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,GAC9B,OAAO,cAAc,EACrB,UAAU,QAAQ,CAAC,YAAY,CAAC,EAChC,MAAM,QAAQ,CAAC,YAAY,CAAC,KAC3B,IAoBF,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"angular-resolved-path.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-resolved-path.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAEV,mBAAmB,EACpB,MAAM,iCAAiC,CAAC;AA+CzC,eAAO,MAAM,eAAe,GAAI,yDAM7B,mBAAmB,KAAG,OAwCxB,CAAC"}
1
+ {"version":3,"file":"angular-resolved-path.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-resolved-path.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAGV,mBAAmB,EACpB,MAAM,iCAAiC,CAAC;AAqEzC,eAAO,MAAM,eAAe,GAAI,yDAM7B,mBAAmB,KAAG,OA4CxB,CAAC"}
@@ -1,6 +1,5 @@
1
1
  import type { TemplateReadsOptions } from '../common/project-usage.type.ts';
2
2
  type TemplateReadResult = {
3
- /** True when a `#reference` was resolved through the directive index. */
4
3
  readonly usedDirectiveIndex: boolean;
5
4
  };
6
5
  export declare const addTemplateReads: ({ angularClass, checker, directives, fileName, sink, source }: TemplateReadsOptions) => TemplateReadResult;
@@ -1 +1 @@
1
- {"version":3,"file":"angular-template-read-resolution.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-read-resolution.ts"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAKV,oBAAoB,EACrB,MAAM,iCAAiC,CAAC;AAGzC,KAAK,kBAAkB,GAAG;IACxB,yEAAyE;IACzE,QAAQ,CAAC,kBAAkB,EAAE,OAAO,CAAC;CACtC,CAAC;AAoFF,eAAO,MAAM,gBAAgB,GAAI,+DAO9B,oBAAoB,KAAG,kBAsCzB,CAAC"}
1
+ {"version":3,"file":"angular-template-read-resolution.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-read-resolution.ts"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EAKV,oBAAoB,EACrB,MAAM,iCAAiC,CAAC;AAGzC,KAAK,kBAAkB,GAAG;IACxB,QAAQ,CAAC,kBAAkB,EAAE,OAAO,CAAC;CACtC,CAAC;AA6GF,eAAO,MAAM,gBAAgB,GAAI,+DAO9B,oBAAoB,KAAG,kBAsCzB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"angular-template-reads.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-reads.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EACV,mBAAmB,EACnB,aAAa,EACd,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EAGV,2BAA2B,EAE5B,MAAM,iCAAiC,CAAC;AAoDzC,eAAO,MAAM,qBAAqB,GAChC,SAAS,mBAAmB,KAC3B,OAQF,CAAC;AAmDF,0EAA0E;AAC1E,eAAO,MAAM,2BAA2B,GAAI,kDAMzC,2BAA2B,KAAG,aAgChC,CAAC"}
1
+ {"version":3,"file":"angular-template-reads.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-reads.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,mBAAmB,EACnB,aAAa,EACd,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EAGV,2BAA2B,EAE5B,MAAM,iCAAiC,CAAC;AAsDzC,eAAO,MAAM,qBAAqB,GAChC,SAAS,mBAAmB,KAC3B,OAQF,CAAC;AAmDF,0EAA0E;AAC1E,eAAO,MAAM,2BAA2B,GAAI,kDAMzC,2BAA2B,KAAG,aAkChC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"angular-template-references.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-references.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAK1D,OAAO,KAAK,EAEV,WAAW,EACX,cAAc,EAEd,mBAAmB,EACpB,MAAM,iCAAiC,CAAC;AA6CzC,qEAAqE;AACrE,eAAO,MAAM,gBAAgB,GAC3B,SAAS,mBAAmB,EAC5B,WAAW,gBAAgB,EAC3B,OAAO,cAAc,GAAG,SAAS,EACjC,OAAO,WAAW,EAAE,KACnB,IAyBF,CAAC"}
1
+ {"version":3,"file":"angular-template-references.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/lint-suite/src/lib/rules/no-unused-angular-instance-fields/project-usage/angular/angular-template-references.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAK1D,OAAO,KAAK,EAEV,WAAW,EACX,cAAc,EAEd,mBAAmB,EACpB,MAAM,iCAAiC,CAAC;AAoCzC,qEAAqE;AACrE,eAAO,MAAM,gBAAgB,GAC3B,SAAS,mBAAmB,EAC5B,WAAW,gBAAgB,EAC3B,OAAO,cAAc,GAAG,SAAS,EACjC,OAAO,WAAW,EAAE,KACnB,IAyBF,CAAC"}