@enigmatry/eslint-config 19.0.1-preview.1 → 20.0.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/index.js +6 -3
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -11,11 +11,12 @@ import arrowFunctions from "eslint-plugin-prefer-arrow-functions";
|
|
|
11
11
|
export default tseslint.config(
|
|
12
12
|
...angular.configs.tsRecommended,
|
|
13
13
|
{
|
|
14
|
-
ignores: ["src/**/generated/", "src/polyfills.ts", "src/@enigmatry/**", "**/api-reference.ts"
|
|
14
|
+
ignores: ["src/**/generated/", "src/polyfills.ts", "src/@enigmatry/**", "**/api-reference.ts",
|
|
15
|
+
'.angular/**', '.vscode/**', 'bin/**', 'coverage/**', 'dist/**', 'node_modules/**', 'obj/**']
|
|
15
16
|
},
|
|
16
17
|
{
|
|
17
18
|
"processor": angular.processInlineTemplates,
|
|
18
|
-
"files": ["src/**/*.ts"],
|
|
19
|
+
"files": ["src/**/*.ts", "libs/**/*.ts"],
|
|
19
20
|
"languageOptions": {
|
|
20
21
|
"ecmaVersion": "latest",
|
|
21
22
|
"sourceType": "module",
|
|
@@ -329,7 +330,9 @@ export default tseslint.config(
|
|
|
329
330
|
"@typescript-eslint/no-unused-vars": [
|
|
330
331
|
"error",
|
|
331
332
|
{
|
|
332
|
-
"argsIgnorePattern": "^_"
|
|
333
|
+
"argsIgnorePattern": "^_",
|
|
334
|
+
"destructuredArrayIgnorePattern": "^_",
|
|
335
|
+
"varsIgnorePattern": "^_"
|
|
333
336
|
}
|
|
334
337
|
],
|
|
335
338
|
"@typescript-eslint/no-use-before-define": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enigmatry/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "20.0.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Enigmatry",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"eslint-plugin-prefer-arrow-functions": "3.4.1",
|
|
23
23
|
"eslint-plugin-promise": "7.2.1",
|
|
24
24
|
"eslint-plugin-unused-imports": "4.1.4",
|
|
25
|
-
"angular-eslint": "
|
|
26
|
-
"typescript-eslint": "8.
|
|
25
|
+
"angular-eslint": "20.1.1",
|
|
26
|
+
"typescript-eslint": "8.26.0",
|
|
27
27
|
"eslint": "9.17.0"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|