@lenne.tech/eslint-config-angular 0.0.9 → 0.0.10
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/index.js +1 -1
- package/package.json +11 -10
package/index.js
CHANGED
|
@@ -25,6 +25,7 @@ module.exports = {
|
|
|
25
25
|
{ type: "element", prefix: "app", style: "kebab-case" },
|
|
26
26
|
], // Enforces a consistent naming convention for Angular components
|
|
27
27
|
"no-async-promise-executor": "warn", // Warns when using an async function as a Promise executor
|
|
28
|
+
"@typescript-eslint/no-explicit-any": "warn",
|
|
28
29
|
"@typescript-eslint/no-unused-vars": "error", // Reports unused variables in TypeScript code
|
|
29
30
|
},
|
|
30
31
|
},
|
|
@@ -120,7 +121,6 @@ module.exports = {
|
|
|
120
121
|
"@typescript-eslint/consistent-indexed-object-style": "off", // Enforces consistent usage of index signatures or record types in TypeScript code
|
|
121
122
|
"@typescript-eslint/naming-convention": "off", // Enforces naming conventions for variables, functions, classes, etc. in TypeScript code
|
|
122
123
|
"@typescript-eslint/explicit-member-accessibility": "off", // Requires explicit accessibility modifiers on class members in TypeScript code
|
|
123
|
-
"@typescript-eslint/no-explicit-any": "off", // Disallows the use of the 'any' type in TypeScript code
|
|
124
124
|
"@typescript-eslint/parameter-properties": "off", // Requires parameter properties to be declared on the constructor in TypeScript code
|
|
125
125
|
"@typescript-eslint/interface-name-prefix": "off", // Requires or disallows a prefix for interface names in TypeScript code
|
|
126
126
|
"@typescript-eslint/no-empty-interface": "off", // Disallows empty interfaces in TypeScript code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lenne.tech/eslint-config-angular",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "ESLint config of lenne.Tech for Angular",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -17,17 +17,18 @@
|
|
|
17
17
|
"eslint": ">=7.4.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@angular-eslint/builder": "16.
|
|
21
|
-
"@angular-eslint/eslint-plugin": "16.
|
|
22
|
-
"@angular-eslint/eslint-plugin-template": "16.
|
|
23
|
-
"@angular-eslint/schematics": "16.
|
|
24
|
-
"@angular-eslint/template-parser": "16.
|
|
25
|
-
"@typescript-eslint/eslint-plugin": "
|
|
26
|
-
"@typescript-eslint/parser": "
|
|
27
|
-
"eslint-config-prettier": "
|
|
20
|
+
"@angular-eslint/builder": "16.1.2",
|
|
21
|
+
"@angular-eslint/eslint-plugin": "16.1.2",
|
|
22
|
+
"@angular-eslint/eslint-plugin-template": "16.1.2",
|
|
23
|
+
"@angular-eslint/schematics": "16.1.2",
|
|
24
|
+
"@angular-eslint/template-parser": "16.1.2",
|
|
25
|
+
"@typescript-eslint/eslint-plugin": "6.7.0",
|
|
26
|
+
"@typescript-eslint/parser": "6.7.0",
|
|
27
|
+
"eslint-config-prettier": "9.0.0",
|
|
28
|
+
"functions-have-names": "1.2.3"
|
|
28
29
|
},
|
|
29
30
|
"devDependencies": {
|
|
30
|
-
"eslint": "8.
|
|
31
|
+
"eslint": "8.49.0",
|
|
31
32
|
"watch": "1.0.2"
|
|
32
33
|
}
|
|
33
34
|
}
|