@depup/angular-eslint__utils 21.3.1-depup.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/LICENSE +21 -0
- package/README.md +25 -0
- package/changes.json +5 -0
- package/dist/eslint-plugin/ast-utils.d.ts +161 -0
- package/dist/eslint-plugin/ast-utils.d.ts.map +1 -0
- package/dist/eslint-plugin/ast-utils.js +465 -0
- package/dist/eslint-plugin/comment-utils.d.ts +11 -0
- package/dist/eslint-plugin/comment-utils.d.ts.map +1 -0
- package/dist/eslint-plugin/comment-utils.js +89 -0
- package/dist/eslint-plugin/get-aria-attribute-keys.d.ts +2 -0
- package/dist/eslint-plugin/get-aria-attribute-keys.d.ts.map +1 -0
- package/dist/eslint-plugin/get-aria-attribute-keys.js +56 -0
- package/dist/eslint-plugin/get-native-event-names.d.ts +12 -0
- package/dist/eslint-plugin/get-native-event-names.d.ts.map +1 -0
- package/dist/eslint-plugin/get-native-event-names.js +200 -0
- package/dist/eslint-plugin/rule-fixes.d.ts +17 -0
- package/dist/eslint-plugin/rule-fixes.d.ts.map +1 -0
- package/dist/eslint-plugin/rule-fixes.js +134 -0
- package/dist/eslint-plugin/selector-utils.d.ts +55 -0
- package/dist/eslint-plugin/selector-utils.d.ts.map +1 -0
- package/dist/eslint-plugin/selector-utils.js +269 -0
- package/dist/eslint-plugin/selectors.d.ts +28 -0
- package/dist/eslint-plugin/selectors.d.ts.map +1 -0
- package/dist/eslint-plugin/selectors.js +48 -0
- package/dist/eslint-plugin-template/parser-services.d.ts +13 -0
- package/dist/eslint-plugin-template/parser-services.d.ts.map +1 -0
- package/dist/eslint-plugin-template/parser-services.js +24 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +56 -0
- package/dist/utils.d.ts +27 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +59 -0
- package/package.json +61 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 James Henry
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @depup/angular-eslint__utils
|
|
2
|
+
|
|
3
|
+
> Dependency-bumped version of [@angular-eslint/utils](https://www.npmjs.com/package/@angular-eslint/utils)
|
|
4
|
+
|
|
5
|
+
Generated by [DepUp](https://github.com/depup/npm) -- all production
|
|
6
|
+
dependencies bumped to latest versions.
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install @depup/angular-eslint__utils
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
| Field | Value |
|
|
15
|
+
|-------|-------|
|
|
16
|
+
| Original | [@angular-eslint/utils](https://www.npmjs.com/package/@angular-eslint/utils) @ 21.3.1 |
|
|
17
|
+
| Processed | 2026-03-22 |
|
|
18
|
+
| Smoke test | passed |
|
|
19
|
+
| Deps updated | 0 |
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
Source: https://github.com/depup/npm | Original: https://www.npmjs.com/package/@angular-eslint/utils
|
|
24
|
+
|
|
25
|
+
License inherited from the original package.
|
package/changes.json
ADDED
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import type { TSESTree } from '@typescript-eslint/utils';
|
|
2
|
+
export declare enum AngularClassDecorators {
|
|
3
|
+
Component = "Component",
|
|
4
|
+
Directive = "Directive",
|
|
5
|
+
Injectable = "Injectable",
|
|
6
|
+
NgModule = "NgModule",
|
|
7
|
+
Pipe = "Pipe"
|
|
8
|
+
}
|
|
9
|
+
declare enum AngularConstructorParameterDecorators {
|
|
10
|
+
Attribute = "Attribute",
|
|
11
|
+
Host = "Host",
|
|
12
|
+
Inject = "Inject",
|
|
13
|
+
Optional = "Optional",
|
|
14
|
+
Self = "Self",
|
|
15
|
+
SkipSelf = "SkipSelf"
|
|
16
|
+
}
|
|
17
|
+
declare enum AngularMethodDecorators {
|
|
18
|
+
HostListener = "HostListener"
|
|
19
|
+
}
|
|
20
|
+
declare enum AngularPropertyAccessorDecorators {
|
|
21
|
+
ContentChild = "ContentChild",
|
|
22
|
+
ContentChildren = "ContentChildren",
|
|
23
|
+
HostBinding = "HostBinding",
|
|
24
|
+
Input = "Input",
|
|
25
|
+
Output = "Output",
|
|
26
|
+
ViewChild = "ViewChild",
|
|
27
|
+
ViewChildren = "ViewChildren"
|
|
28
|
+
}
|
|
29
|
+
export declare const AngularInnerClassDecorators: {
|
|
30
|
+
ContentChild: AngularPropertyAccessorDecorators.ContentChild;
|
|
31
|
+
ContentChildren: AngularPropertyAccessorDecorators.ContentChildren;
|
|
32
|
+
HostBinding: AngularPropertyAccessorDecorators.HostBinding;
|
|
33
|
+
Input: AngularPropertyAccessorDecorators.Input;
|
|
34
|
+
Output: AngularPropertyAccessorDecorators.Output;
|
|
35
|
+
ViewChild: AngularPropertyAccessorDecorators.ViewChild;
|
|
36
|
+
ViewChildren: AngularPropertyAccessorDecorators.ViewChildren;
|
|
37
|
+
HostListener: AngularMethodDecorators.HostListener;
|
|
38
|
+
Attribute: AngularConstructorParameterDecorators.Attribute;
|
|
39
|
+
Host: AngularConstructorParameterDecorators.Host;
|
|
40
|
+
Inject: AngularConstructorParameterDecorators.Inject;
|
|
41
|
+
Optional: AngularConstructorParameterDecorators.Optional;
|
|
42
|
+
Self: AngularConstructorParameterDecorators.Self;
|
|
43
|
+
SkipSelf: AngularConstructorParameterDecorators.SkipSelf;
|
|
44
|
+
};
|
|
45
|
+
export declare enum AngularLifecycleInterfaces {
|
|
46
|
+
AfterContentChecked = "AfterContentChecked",
|
|
47
|
+
AfterContentInit = "AfterContentInit",
|
|
48
|
+
AfterViewChecked = "AfterViewChecked",
|
|
49
|
+
AfterViewInit = "AfterViewInit",
|
|
50
|
+
DoBootstrap = "DoBootstrap",
|
|
51
|
+
DoCheck = "DoCheck",
|
|
52
|
+
OnChanges = "OnChanges",
|
|
53
|
+
OnDestroy = "OnDestroy",
|
|
54
|
+
OnInit = "OnInit"
|
|
55
|
+
}
|
|
56
|
+
export declare enum AngularLifecycleMethods {
|
|
57
|
+
ngAfterContentChecked = "ngAfterContentChecked",
|
|
58
|
+
ngAfterContentInit = "ngAfterContentInit",
|
|
59
|
+
ngAfterViewChecked = "ngAfterViewChecked",
|
|
60
|
+
ngAfterViewInit = "ngAfterViewInit",
|
|
61
|
+
ngDoBootstrap = "ngDoBootstrap",
|
|
62
|
+
ngDoCheck = "ngDoCheck",
|
|
63
|
+
ngOnChanges = "ngOnChanges",
|
|
64
|
+
ngOnDestroy = "ngOnDestroy",
|
|
65
|
+
ngOnInit = "ngOnInit"
|
|
66
|
+
}
|
|
67
|
+
export declare const OPTION_STYLE_CAMEL_CASE: "camelCase";
|
|
68
|
+
export declare const OPTION_STYLE_KEBAB_CASE: "kebab-case";
|
|
69
|
+
export type SelectorStyle = typeof OPTION_STYLE_CAMEL_CASE | typeof OPTION_STYLE_KEBAB_CASE;
|
|
70
|
+
export type AngularClassDecoratorKeys = keyof typeof AngularClassDecorators;
|
|
71
|
+
export type AngularInnerClassDecoratorKeys = Exclude<keyof typeof AngularInnerClassDecorators, number>;
|
|
72
|
+
export type AngularLifecycleInterfaceKeys = keyof typeof AngularLifecycleInterfaces;
|
|
73
|
+
export type AngularLifecycleMethodKeys = keyof typeof AngularLifecycleMethods;
|
|
74
|
+
export declare const angularClassDecoratorKeys: readonly ("Component" | "Directive" | "Injectable" | "NgModule" | "Pipe")[];
|
|
75
|
+
export declare const angularInnerClassDecoratorKeys: readonly ("Attribute" | "Host" | "Inject" | "Optional" | "Self" | "SkipSelf" | "HostListener" | "ContentChild" | "ContentChildren" | "HostBinding" | "Input" | "Output" | "ViewChild" | "ViewChildren")[];
|
|
76
|
+
export declare const angularLifecycleInterfaceKeys: readonly ("AfterContentChecked" | "AfterContentInit" | "AfterViewChecked" | "AfterViewInit" | "DoBootstrap" | "DoCheck" | "OnChanges" | "OnDestroy" | "OnInit")[];
|
|
77
|
+
export declare const angularLifecycleMethodKeys: readonly ("ngAfterContentChecked" | "ngAfterContentInit" | "ngAfterViewChecked" | "ngAfterViewInit" | "ngDoBootstrap" | "ngDoCheck" | "ngOnChanges" | "ngOnDestroy" | "ngOnInit")[];
|
|
78
|
+
/**
|
|
79
|
+
* See lifecycle event sequence:
|
|
80
|
+
* https://angular.dev/guide/components/lifecycle
|
|
81
|
+
*/
|
|
82
|
+
export declare const angularLifecycleMethodsOrdered: AngularLifecycleMethods[];
|
|
83
|
+
export declare const ANGULAR_CLASS_DECORATOR_LIFECYCLE_METHOD_MAPPER: ReadonlyMap<AngularClassDecoratorKeys, ReadonlySet<AngularLifecycleMethodKeys>>;
|
|
84
|
+
export declare const ANGULAR_INNER_CLASS_DECORATORS: ReadonlySet<AngularInnerClassDecoratorKeys>;
|
|
85
|
+
export declare const ANGULAR_CLASS_DECORATORS: ReadonlySet<AngularClassDecoratorKeys>;
|
|
86
|
+
export declare const ANGULAR_CLASS_DECORATOR_MAPPER: ReadonlyMap<AngularClassDecoratorKeys, ReadonlySet<AngularInnerClassDecoratorKeys>>;
|
|
87
|
+
export declare function getCorrespondentImportClause(importDeclarations: readonly TSESTree.ImportDeclaration[], compatibleWithTypeOnlyImport?: boolean): TSESTree.ImportClause | undefined;
|
|
88
|
+
export declare function getImportDeclarations(node: TSESTree.Node, moduleName: string): readonly TSESTree.ImportDeclaration[] | undefined;
|
|
89
|
+
export declare function getImportDeclarationSpecifier(importDeclarations: readonly TSESTree.ImportDeclaration[], importName: string): {
|
|
90
|
+
importSpecifier: TSESTree.ImportSpecifier;
|
|
91
|
+
importDeclaration: TSESTree.ImportDeclaration;
|
|
92
|
+
} | undefined;
|
|
93
|
+
export declare function getInterface(node: TSESTree.ClassDeclaration, interfaceName: string): TSESTree.Identifier | TSESTree.MemberExpression | undefined;
|
|
94
|
+
export declare function getInterfaceName(interfaceMember: TSESTree.Identifier | TSESTree.MemberExpression): string | undefined;
|
|
95
|
+
export declare const getPipeDecorator: (node: TSESTree.ClassDeclaration) => TSESTree.Decorator | undefined;
|
|
96
|
+
export declare function getInterfaces(node: TSESTree.ClassDeclaration): readonly (TSESTree.Identifier | TSESTree.MemberExpression)[];
|
|
97
|
+
export declare function getDeclaredInterfaceNames(node: TSESTree.ClassDeclaration): readonly string[];
|
|
98
|
+
export declare const getDeclaredAngularLifecycleInterfaces: (node: TSESTree.ClassDeclaration) => readonly AngularLifecycleInterfaceKeys[];
|
|
99
|
+
export declare const getDeclaredAngularLifecycleMethods: (node: TSESTree.ClassDeclaration) => readonly AngularLifecycleMethodKeys[];
|
|
100
|
+
export declare function getNearestNodeFrom<T extends TSESTree.Node>({ parent }: TSESTree.Node, predicate: (parent: TSESTree.Node) => parent is T): T | null;
|
|
101
|
+
export declare const getClassName: (node: TSESTree.Node) => string | undefined;
|
|
102
|
+
export declare const getDecorator: (node: TSESTree.ClassDeclaration | TSESTree.PropertyDefinition | TSESTree.Identifier | TSESTree.MethodDefinition, decoratorName: string) => TSESTree.Decorator | undefined;
|
|
103
|
+
export declare const getAngularClassDecorator: ({ decorators, }: TSESTree.ClassDeclaration) => AngularClassDecoratorKeys | undefined;
|
|
104
|
+
export declare const getDecoratorArgument: ({ expression, }: TSESTree.Decorator) => TSESTree.ObjectExpression | undefined;
|
|
105
|
+
export declare const getDecoratorName: ({ expression, }: TSESTree.Decorator) => string | undefined;
|
|
106
|
+
export declare const ANGULAR_LIFECYCLE_INTERFACES: ReadonlySet<AngularLifecycleInterfaceKeys>;
|
|
107
|
+
export declare const ANGULAR_LIFECYCLE_METHODS: ReadonlySet<AngularLifecycleMethodKeys>;
|
|
108
|
+
export declare const isAngularLifecycleInterface: (value: string) => value is AngularLifecycleInterfaceKeys;
|
|
109
|
+
export declare const isAngularLifecycleMethod: (value: string) => value is AngularLifecycleMethodKeys;
|
|
110
|
+
export declare const isAngularClassDecorator: (value: string) => value is AngularClassDecoratorKeys;
|
|
111
|
+
export declare const isAngularInnerClassDecorator: (value: string) => value is AngularInnerClassDecoratorKeys;
|
|
112
|
+
/**
|
|
113
|
+
* `PropertyDefinition` nodes can have different types of `key`s
|
|
114
|
+
*
|
|
115
|
+
* E.g.
|
|
116
|
+
*
|
|
117
|
+
* class Foo {
|
|
118
|
+
* a // Identifier
|
|
119
|
+
* 'b' // Literal
|
|
120
|
+
* ['c'] // Literal
|
|
121
|
+
* }
|
|
122
|
+
*/
|
|
123
|
+
export declare function getPropertyDefinitionName({ computed, key, }: TSESTree.PropertyDefinition): string;
|
|
124
|
+
export declare const getDecoratorProperties: (decorator: TSESTree.Decorator) => TSESTree.Property[];
|
|
125
|
+
export declare const getDecoratorProperty: (decorator: TSESTree.Decorator, name: string) => TSESTree.Property | undefined;
|
|
126
|
+
export declare const getDecoratorPropertyValue: (decorator: TSESTree.Decorator, name: string) => TSESTree.Property["value"] | undefined;
|
|
127
|
+
export declare const getDeclaredMethods: ({ body: { body }, }: TSESTree.ClassDeclaration) => readonly TSESTree.MethodDefinition[];
|
|
128
|
+
export declare const getMethodName: ({ computed, key, }: TSESTree.MethodDefinition) => string | undefined;
|
|
129
|
+
export declare const getLifecycleInterfaceByMethodName: (methodName: AngularLifecycleMethodKeys) => AngularLifecycleInterfaceKeys;
|
|
130
|
+
export declare function isImportedFrom(identifier: TSESTree.Identifier, moduleName: string): boolean;
|
|
131
|
+
export declare function getRawText(node: TSESTree.Node): string;
|
|
132
|
+
export declare function getReplacementText(node: TSESTree.Literal | TSESTree.TemplateElement | TSESTree.TemplateLiteral, text: string): string;
|
|
133
|
+
export declare function isCallExpression(node: TSESTree.Node): node is TSESTree.CallExpression;
|
|
134
|
+
export declare function isMemberExpression(node: TSESTree.Node): node is TSESTree.MemberExpression;
|
|
135
|
+
export declare function isIdentifierOrMemberExpression(node: TSESTree.Node): node is TSESTree.Identifier | TSESTree.MemberExpression;
|
|
136
|
+
export declare function isClassDeclaration(node: TSESTree.Node): node is TSESTree.ClassDeclaration;
|
|
137
|
+
export declare function isPropertyDefinition(node: TSESTree.Node): node is TSESTree.PropertyDefinition;
|
|
138
|
+
export declare function isPropertyOrMethodDefinition(node: TSESTree.Node): node is TSESTree.PropertyDefinition | TSESTree.MethodDefinition;
|
|
139
|
+
export declare function isImportDefaultSpecifier(node: TSESTree.Node): node is TSESTree.ImportDefaultSpecifier;
|
|
140
|
+
export declare function isImportNamespaceSpecifier(node: TSESTree.Node): node is TSESTree.ImportNamespaceSpecifier;
|
|
141
|
+
export declare function isObjectExpression(node: TSESTree.Node): node is TSESTree.ObjectExpression;
|
|
142
|
+
export declare function isArrayExpression(node: TSESTree.Node): node is TSESTree.ArrayExpression;
|
|
143
|
+
export declare function isProperty(node: TSESTree.Node): node is TSESTree.Property;
|
|
144
|
+
export declare function isLiteral(node: TSESTree.Node): node is TSESTree.Literal;
|
|
145
|
+
export declare function isTemplateElement(node: TSESTree.Node): node is TSESTree.TemplateElement;
|
|
146
|
+
export declare function isTemplateLiteral(node: TSESTree.Node): node is TSESTree.TemplateLiteral;
|
|
147
|
+
export declare function isImportDeclaration(node: TSESTree.Node): node is TSESTree.ImportDeclaration;
|
|
148
|
+
export declare function isImportSpecifier(node: TSESTree.Node): node is TSESTree.ImportSpecifier;
|
|
149
|
+
/**
|
|
150
|
+
* `ESTree` does not differentiate between different types of `Literals` at the `AST` level,
|
|
151
|
+
* but it is a common thing to need to do, so this utility are here to
|
|
152
|
+
* avoid repeated `typeof` checks on the node's value.
|
|
153
|
+
*/
|
|
154
|
+
export declare function isStringLiteral(node: TSESTree.Node): node is TSESTree.StringLiteral;
|
|
155
|
+
export declare function isMethodDefinition(node: TSESTree.Node): node is TSESTree.MethodDefinition;
|
|
156
|
+
export declare function isSuper(node: TSESTree.Node): node is TSESTree.Super;
|
|
157
|
+
export declare function isImplementsToken(token: TSESTree.Token): token is TSESTree.KeywordToken & {
|
|
158
|
+
value: 'implements';
|
|
159
|
+
};
|
|
160
|
+
export {};
|
|
161
|
+
//# sourceMappingURL=ast-utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ast-utils.d.ts","sourceRoot":"","sources":["../../src/eslint-plugin/ast-utils.ts"],"names":[],"mappings":"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"}
|