@angular-eslint/eslint-plugin 1.0.1-alpha.4 → 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 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-eslint/eslint-plugin",
3
- "version": "1.0.1-alpha.4+a4fd077",
3
+ "version": "1.1.0",
4
4
  "description": "ESLint plugin for Angular applications, following angular.io/styleguide",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -26,7 +26,7 @@
26
26
  "@typescript-eslint/experimental-utils": "4.3.0"
27
27
  },
28
28
  "devDependencies": {
29
- "@angular-eslint/utils": "1.0.0"
29
+ "@angular-eslint/utils": "1.1.0"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "eslint": "*",
@@ -35,5 +35,5 @@
35
35
  "eslint-plugin-prefer-arrow": "*",
36
36
  "typescript": "*"
37
37
  },
38
- "gitHead": "a4fd077a062797c57f63abd9d0a78f60d40c73ca"
38
+ "gitHead": "e1057dd2c39b2b7af16280233b478743b0df02ff"
39
39
  }