Skip to content

Commit 3d0355c

Browse files
Hristo HristovHristo Hristov
authored andcommitted
fix(cli): add fixes in angular configuration
1 parent ae49786 commit 3d0355c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

eslint.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default [
1616
// TODO: consider extending the recommended by ts rules and overriding them where necessary
1717
// 'eslint:recommended',
1818
// 'plugin:@typescript-eslint/recommended'
19-
//],
19+
//],
2020
parser: typescriptParser,
2121
parserOptions: {
2222
project: '**/tsconfig.json',
@@ -27,7 +27,7 @@ export default [
2727
'eslint-plugin-import': eslintPluginImport,
2828
'eslint-plugin-unicorn': eslintPluginUnicorn,
2929
'eslint-plugin-prefer-arrow': eslintPluginPreferArrow,
30-
// "@typescript-eslint" - install it if we extend the recommended ts rules
30+
//"@typescript-eslint" - install it if we extend the recommended ts rules
3131
},
3232
rules: {
3333
'complexity': 'off',

packages/igx-templates/igx-ts-legacy/projects/_base/files/angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
},
5353
{
5454
"type": "anyComponentStyle",
55-
"maximumWarning": "6kb",
55+
"maximumWarning": "8kb",
5656
"maximumError": "2mb"
5757
}
5858
],

packages/igx-templates/igx-ts/projects/_base/files/angular.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
{
5353
"type": "anyComponentStyle",
54-
"maximumWarning": "6kb",
54+
"maximumWarning": "8kb",
5555
"maximumError": "2mb"
5656
}
5757
],
@@ -110,11 +110,11 @@
110110
"lint": {
111111
"builder": "@angular-eslint/builder:lint",
112112
"options": {
113-
"eslintConfig": "eslint.config.mjs",
114-
"lintFilePatterns": [
115-
"src/**/*.ts",
116-
"src/**/*.html"
117-
]
113+
"eslintConfig": "eslint.config.mjs",
114+
"lintFilePatterns": [
115+
"src/**/*.ts",
116+
"src/**/*.html"
117+
]
118118
}
119119
}
120120
}

0 commit comments

Comments
 (0)