Skip to content

Commit 6d824f8

Browse files
committed
fix: fix linting errors
1 parent 132e29d commit 6d824f8

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

.eslintrc.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
],
2323
"extends": [
2424
"eslint:recommended",
25-
"plugin:@typescript-eslint/recommended",
26-
"plugin:@typescript-eslint/recommended-requiring-type-checking",
25+
"plugin:@typescript-eslint/recommended-type-checked",
2726
"plugin:@angular-eslint/recommended",
2827
"plugin:@angular-eslint/template/process-inline-templates",
2928
"plugin:import/errors",
@@ -53,10 +52,6 @@
5352
}
5453
},
5554
"rules": {
56-
"@typescript-eslint/quotes": [
57-
"error",
58-
"single"
59-
],
6055
"@typescript-eslint/unbound-method": [
6156
"error",
6257
{

projects/mat-datatable-demo/.eslintrc.json

-4
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@
5555
}
5656
},
5757
"rules": {
58-
"@typescript-eslint/quotes": [
59-
"error",
60-
"single"
61-
],
6258
"@typescript-eslint/unbound-method": [
6359
"error",
6460
{

projects/mat-datatable-lib/testing/src/mat-multi-sort-header-harness.ts

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export class MatMultiSortHeaderHarness extends ComponentHarness {
8080
if (position.length !== 0) {
8181
result = Number(position);
8282
}
83+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
8384
} catch (err) {
8485
result = Number.NaN;
8586
}

0 commit comments

Comments
 (0)