Skip to content

Commit 85f7870

Browse files
committed
chore: resolve lint errors
1 parent 19ccbab commit 85f7870

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.eslintrc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
"plugin:@angular-eslint/template/process-inline-templates"
1616
],
1717
"rules": {
18+
"@typescript-eslint/restrict-template-expressions": "off",
19+
"@typescript-eslint/restrict-plus-operands": "off",
1820
"@angular-eslint/component-selector": [
1921
"error",
2022
{

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (environment.production) {
88
enableProdMode();
99
}
1010

11-
bootstrapApplication(AppComponent, appConfig).catch((err) => {
11+
bootstrapApplication(AppComponent, appConfig).catch((err: unknown) => {
1212
console.error(err);
1313
});
1414

0 commit comments

Comments
 (0)