eslint-config-angular-strict 2.3.85 → 2.3.86
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/naming-conventions.js +2 -2
- package/package.json +1 -1
package/naming-conventions.js
CHANGED
|
@@ -252,9 +252,9 @@ export const namingConventionOverrides = [
|
|
|
252
252
|
},
|
|
253
253
|
},
|
|
254
254
|
|
|
255
|
-
// *.routes.ts: only imports + export const allowed (route definitions, any folder)
|
|
255
|
+
// routes.ts / *.routes.ts: only imports + export const allowed (route definitions, any folder)
|
|
256
256
|
{
|
|
257
|
-
files: ['**/*.routes.ts'],
|
|
257
|
+
files: ['**/routes.ts', '**/*.routes.ts'],
|
|
258
258
|
rules: {
|
|
259
259
|
'no-restricted-syntax': [
|
|
260
260
|
'error',
|