Skip to content

Commit 8fc90cd

Browse files
authored
Merge pull request #8 from ProAngular/ct/angular-16-support
Angular 16 Support
2 parents c9ec5ea + 26e470e commit 8fc90cd

7 files changed

+8701
-7129
lines changed

.eslintrc.json

+145-49
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,20 @@
2222
"plugin:rxjs/recommended",
2323
"plugin:@typescript-eslint/recommended",
2424
"plugin:@angular-eslint/recommended",
25-
"plugin:@angular-eslint/recommended--extra",
26-
"plugin:@angular-eslint/ng-cli-compat",
27-
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
2825
"plugin:@angular-eslint/template/process-inline-templates",
2926
"prettier"
3027
],
31-
"plugins": [ "jsdoc", "rxjs-angular", "unicorn" ],
28+
"plugins": [
29+
"jsdoc",
30+
"rxjs-angular",
31+
"unicorn"
32+
],
3233
"rules": {
33-
// Excluded rules
3434
"@typescript-eslint/no-empty-interface": "off",
3535
"import/no-deprecated": "off",
3636
"import/no-unresolved": "off",
3737
"rxjs/no-async-subscribe": "off",
3838
"rxjs/no-sharereplay": "off",
39-
// Included rules
4039
"@angular-eslint/component-selector": [
4140
"error",
4241
{
@@ -55,12 +54,22 @@
5554
],
5655
"@angular-eslint/no-host-metadata-property": [
5756
"error",
58-
{ "allowStatic": true }
57+
{
58+
"allowStatic": true
59+
}
60+
],
61+
"@angular-eslint/prefer-output-readonly": [
62+
"error"
63+
],
64+
"@angular-eslint/use-component-selector": [
65+
"error"
66+
],
67+
"@angular-eslint/use-component-view-encapsulation": [
68+
"error"
69+
],
70+
"@angular-eslint/use-lifecycle-interface": [
71+
"error"
5972
],
60-
"@angular-eslint/prefer-output-readonly": [ "error" ],
61-
"@angular-eslint/use-component-selector": [ "error" ],
62-
"@angular-eslint/use-component-view-encapsulation": [ "error" ],
63-
"@angular-eslint/use-lifecycle-interface": [ "error" ],
6473
"@typescript-eslint/array-type": [
6574
"error",
6675
{
@@ -74,19 +83,24 @@
7483
"objectLiteralTypeAssertions": "never"
7584
}
7685
],
77-
"@typescript-eslint/consistent-type-definitions": [ "error" ],
86+
"@typescript-eslint/consistent-type-definitions": [
87+
"error"
88+
],
7889
"@typescript-eslint/explicit-function-return-type": [
7990
"error",
8091
{
81-
// Only functions which are part of a declaration will be checked.
8292
"allowExpressions": true
8393
}
8494
],
8595
"@typescript-eslint/explicit-member-accessibility": [
8696
"error",
87-
{ "accessibility": "explicit" }
97+
{
98+
"accessibility": "explicit"
99+
}
100+
],
101+
"@typescript-eslint/explicit-module-boundary-types": [
102+
"error"
88103
],
89-
"@typescript-eslint/explicit-module-boundary-types": [ "error" ],
90104
"@typescript-eslint/member-ordering": [
91105
"error",
92106
{
@@ -103,16 +117,25 @@
103117
"error",
104118
{
105119
"selector": "classProperty",
106-
"format": [ "PascalCase", "camelCase" ],
107-
"modifiers": [ "public" ]
120+
"format": [
121+
"PascalCase",
122+
"camelCase"
123+
],
124+
"modifiers": [
125+
"public"
126+
]
108127
},
109128
{
110129
"selector": "function",
111-
"format": [ "camelCase" ]
130+
"format": [
131+
"camelCase"
132+
]
112133
},
113134
{
114135
"selector": "interface",
115-
"format": [ "PascalCase" ],
136+
"format": [
137+
"PascalCase"
138+
],
116139
"custom": {
117140
"regex": "^I[A-Z]",
118141
"match": false
@@ -123,9 +146,13 @@
123146
"@typescript-eslint/no-explicit-any": "error",
124147
"@typescript-eslint/no-namespace": [
125148
"error",
126-
{ "allowDeclarations": true }
149+
{
150+
"allowDeclarations": true
151+
}
152+
],
153+
"@typescript-eslint/no-unused-expressions": [
154+
"error"
127155
],
128-
"@typescript-eslint/no-unused-expressions": [ "error" ],
129156
"@typescript-eslint/no-unused-vars": [
130157
"error",
131158
{
@@ -134,49 +161,118 @@
134161
"varsIgnorePattern": "^_"
135162
}
136163
],
137-
"@typescript-eslint/prefer-for-of": [ "warn" ],
138-
"@typescript-eslint/prefer-function-type": [ "warn" ],
164+
"@typescript-eslint/prefer-for-of": [
165+
"warn"
166+
],
167+
"@typescript-eslint/prefer-function-type": [
168+
"warn"
169+
],
139170
"@typescript-eslint/prefer-readonly": "error",
140-
"@typescript-eslint/unified-signatures": [ "warn" ],
141-
"eqeqeq": [ "error" ],
142-
"guard-for-in": [ "error" ],
143-
"import/no-default-export": [ "error" ],
144-
"jsdoc/check-alignment": [ "error" ],
145-
"jsdoc/check-indentation": [ "error" ],
146-
"no-bitwise": [ "error" ],
147-
"no-caller": [ "error" ],
148-
"no-console": ["error", { "allow": ["warn", "error"] }],
149-
"no-duplicate-imports": [ "error" ],
171+
"@typescript-eslint/unified-signatures": [
172+
"warn"
173+
],
174+
"eqeqeq": [
175+
"error"
176+
],
177+
"guard-for-in": [
178+
"error"
179+
],
180+
"import/no-default-export": [
181+
"error"
182+
],
183+
"jsdoc/check-alignment": [
184+
"error"
185+
],
186+
"jsdoc/check-indentation": [
187+
"error"
188+
],
189+
"no-bitwise": [
190+
"error"
191+
],
192+
"no-caller": [
193+
"error"
194+
],
195+
"no-console": [
196+
"error",
197+
{
198+
"allow": [
199+
"warn",
200+
"error"
201+
]
202+
}
203+
],
204+
"no-duplicate-imports": [
205+
"error"
206+
],
150207
"no-empty": "error",
151-
"no-eval": [ "error" ],
152-
"no-new-wrappers": [ "error" ],
153-
"no-throw-literal": [ "error" ],
154-
"no-var": [ "error" ],
155-
"object-shorthand": [ "error" ],
156-
"one-var": [ "error", "never" ],
208+
"no-eval": [
209+
"error"
210+
],
211+
"no-new-wrappers": [
212+
"error"
213+
],
214+
"no-throw-literal": [
215+
"error"
216+
],
217+
"no-var": [
218+
"error"
219+
],
220+
"object-shorthand": [
221+
"error"
222+
],
223+
"one-var": [
224+
"error",
225+
"never"
226+
],
157227
"prefer-arrow/prefer-arrow-functions": "off",
158-
"prefer-const": [ "error" ],
159-
"radix": [ "error" ],
228+
"prefer-const": [
229+
"error"
230+
],
231+
"radix": [
232+
"error"
233+
],
160234
"rxjs-angular/prefer-takeuntil": [
161235
"error",
162-
{ "alias": [ "untilDestroyed" ] }
236+
{
237+
"alias": [
238+
"untilDestroyed"
239+
]
240+
}
241+
],
242+
"rxjs/no-exposed-subjects": [
243+
"error"
244+
],
245+
"rxjs/no-finnish": [
246+
"error"
247+
],
248+
"rxjs/no-ignored-replay-buffer": [
249+
"error"
250+
],
251+
"rxjs/no-tap": [
252+
"error"
163253
],
164-
"rxjs/no-exposed-subjects": [ "error" ],
165-
"rxjs/no-finnish": [ "error" ],
166-
"rxjs/no-ignored-replay-buffer": [ "error" ],
167-
"rxjs/no-tap": [ "error" ],
168254
"rxjs/no-unsafe-takeuntil": [
169255
"error",
170-
{ "alias": [ "untilDestroyed" ] }
256+
{
257+
"alias": [
258+
"untilDestroyed"
259+
]
260+
}
171261
],
172262
"spaced-comment": [
173263
"error",
174264
"always",
175-
{ "block": { "balanced": true } }
265+
{
266+
"block": {
267+
"balanced": true
268+
}
269+
}
176270
],
177271
"unicorn/filename-case": [
178272
"error",
179-
{ "case": "kebabCase" }
273+
{
274+
"case": "kebabCase"
275+
}
180276
]
181277
}
182278
},

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,8 @@ Line numbers are enabled by default, but you can turn them off like so.
247247

248248
| Angular version | @proangular/ngx-gist | Install |
249249
| --------------- | -------------------------- | ------------------------------------ |
250-
| v15 | v1.1.x | `ng add @proangular/ngx-gist@latest` |
250+
| v16 | v1.2.x | `ng add @proangular/ngx-gist@latest` |
251+
| v15 | v1.1.x | `ng add @proangular/ngx-gist@1.1.0` |
251252
| v14 | v1.0.x | `ng add @proangular/ngx-gist@1.0.8` |
252253
| v13 | v1.0.x | `ng add @proangular/ngx-gist@1.0.8` |
253254
| v12 | v1.0.x | `ng add @proangular/ngx-gist@1.0.8` |

angular.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@
117117
"cli": {
118118
"schematicCollections": [
119119
"@angular-eslint/schematics"
120-
]
120+
],
121+
"analytics": false
121122
},
122123
"schematics": {
123124
"@angular-eslint/schematics:application": {

0 commit comments

Comments
 (0)