@taiga-ui/eslint-plugin-experience-next 0.522.0 → 0.524.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/README.md CHANGED
@@ -73,6 +73,7 @@ from third-party plugins. The exact severities and file globs live in
73
73
  | Rule | Description | ✅ | 🔧 | 💡 |
74
74
  | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --- | --- | --- |
75
75
  | [array-as-const](https://github.com/taiga-family/toolkit/tree/main/projects/eslint-plugin-experience-next/docs/array-as-const.md) | Exported array of class references should be marked with `as const` | | 🔧 | |
76
+ | [at-compat](https://github.com/taiga-family/toolkit/tree/main/projects/eslint-plugin-experience-next/docs/at-compat.md) | Keep built-in `.at()` and indexed access aligned with the TypeScript target | ✅ | 🔧 | |
76
77
  | [attrs-newline](https://github.com/taiga-family/toolkit/tree/main/projects/eslint-plugin-experience-next/docs/attrs-newline.md) | Enforce one attribute per line when a start tag spans multiple lines | ✅ | 🔧 | |
77
78
  | [class-property-naming](https://github.com/taiga-family/toolkit/tree/main/projects/eslint-plugin-experience-next/docs/class-property-naming.md) | Enforce custom naming for class properties based on their type | | 🔧 | |
78
79
  | [decorator-key-sort](https://github.com/taiga-family/toolkit/tree/main/projects/eslint-plugin-experience-next/docs/decorator-key-sort.md) | Sorts the keys of the object passed to the `@Component/@Injectable/@NgModule/@Pipe` decorator | ✅ | 🔧 | |
package/index.d.ts CHANGED
@@ -12,6 +12,9 @@ declare const plugin: {
12
12
  'array-as-const': import("eslint").Rule.RuleModule & {
13
13
  name: string;
14
14
  };
15
+ 'at-compat': import("@typescript-eslint/utils/ts-eslint").RuleModule<"atCompatAvoidAt" | "atCompatPreferAt", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
16
+ name: string;
17
+ };
15
18
  'attrs-newline': import("eslint").Rule.RuleModule & {
16
19
  name: string;
17
20
  };