@angular-eslint/eslint-plugin 1.0.1-alpha.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/index.d.ts +18 -1
- package/dist/index.js +1 -1
- package/dist/utils/utils.d.ts +12 -8
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# [1.1.0](https://github.com/angular-eslint/angular-eslint/compare/v1.0.0...v1.1.0) (2021-01-14)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **eslint-plugin:** handle DoBootstrap correctly in lifecycle rules ([#243](https://github.com/angular-eslint/angular-eslint/issues/243)) ([5010b3f](https://github.com/angular-eslint/angular-eslint/commit/5010b3f827b6089c089e5a5d55905aa3ac8839cc))
|
package/dist/index.d.ts
CHANGED
|
@@ -35,10 +35,10 @@ declare const _default: {
|
|
|
35
35
|
all: {
|
|
36
36
|
extends: string;
|
|
37
37
|
rules: {
|
|
38
|
+
"@angular-eslint/contextual-decorator": string;
|
|
38
39
|
"@angular-eslint/component-class-suffix": string;
|
|
39
40
|
"@angular-eslint/component-max-inline-declarations": string;
|
|
40
41
|
"@angular-eslint/component-selector": string;
|
|
41
|
-
"@angular-eslint/contextual-decorator": string;
|
|
42
42
|
"@angular-eslint/contextual-lifecycle": string;
|
|
43
43
|
"@angular-eslint/directive-class-suffix": string;
|
|
44
44
|
"@angular-eslint/directive-selector": string;
|
|
@@ -81,24 +81,41 @@ declare const _default: {
|
|
|
81
81
|
recommended: {
|
|
82
82
|
extends: string;
|
|
83
83
|
rules: {
|
|
84
|
+
"@typescript-eslint/array-type": string;
|
|
85
|
+
"arrow-parens": string;
|
|
84
86
|
"no-restricted-imports": (string | {
|
|
85
87
|
paths: {
|
|
86
88
|
name: string;
|
|
87
89
|
message: string;
|
|
88
90
|
}[];
|
|
89
91
|
})[];
|
|
92
|
+
"@typescript-eslint/interface-name-prefix": string;
|
|
93
|
+
"max-classes-per-file": string;
|
|
94
|
+
"max-len": (string | {
|
|
95
|
+
code: number;
|
|
96
|
+
})[];
|
|
97
|
+
"@typescript-eslint/explicit-member-accessibility": string;
|
|
90
98
|
"@typescript-eslint/member-ordering": (string | {
|
|
91
99
|
default: string[];
|
|
92
100
|
})[];
|
|
101
|
+
"no-multiple-empty-lines": string;
|
|
93
102
|
"no-restricted-syntax": (string | {
|
|
94
103
|
selector: string;
|
|
95
104
|
message: string;
|
|
96
105
|
})[];
|
|
106
|
+
"no-empty": string;
|
|
97
107
|
"@typescript-eslint/no-inferrable-types": (string | {
|
|
98
108
|
ignoreParameters: boolean;
|
|
99
109
|
})[];
|
|
100
110
|
"@typescript-eslint/no-non-null-assertion": string;
|
|
101
111
|
"no-fallthrough": string;
|
|
112
|
+
"@typescript-eslint/no-var-requires": string;
|
|
113
|
+
"quote-props": string[];
|
|
114
|
+
"sort-keys": string;
|
|
115
|
+
quotes: (string | {
|
|
116
|
+
allowTemplateLiterals: boolean;
|
|
117
|
+
})[];
|
|
118
|
+
"comma-dangle": string;
|
|
102
119
|
"@angular-eslint/component-class-suffix": string;
|
|
103
120
|
"@angular-eslint/contextual-lifecycle": string;
|
|
104
121
|
"@angular-eslint/directive-class-suffix": string;
|