Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit bd55114

Browse files
committed
update
1 parent 4474046 commit bd55114

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.eslintrc.js

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,17 @@ module.exports = {
1818
},
1919
overrides: [
2020
{
21-
"files": ["*.test.ts"],
22-
"rules": {
23-
"@typescript-eslint/no-unsafe-call": "off",
24-
"import/no-unresolved": "off"
25-
}
26-
}
27-
]
21+
files: ['*.test.ts'],
22+
rules: {
23+
'@typescript-eslint/no-unsafe-call': 'off',
24+
'import/no-unresolved': 'off',
25+
},
26+
},
27+
{
28+
files: ['*.ts'],
29+
rules: {
30+
'default-param-last': 'off',
31+
},
32+
},
33+
],
2834
};

0 commit comments

Comments
 (0)