We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ccbab commit 85f7870Copy full SHA for 85f7870
.eslintrc.json
@@ -15,6 +15,8 @@
15
"plugin:@angular-eslint/template/process-inline-templates"
16
],
17
"rules": {
18
+ "@typescript-eslint/restrict-template-expressions": "off",
19
+ "@typescript-eslint/restrict-plus-operands": "off",
20
"@angular-eslint/component-selector": [
21
"error",
22
{
src/main.ts
@@ -8,7 +8,7 @@ if (environment.production) {
8
enableProdMode();
9
}
10
11
-bootstrapApplication(AppComponent, appConfig).catch((err) => {
+bootstrapApplication(AppComponent, appConfig).catch((err: unknown) => {
12
console.error(err);
13
});
14
0 commit comments