Skip to content

Commit ff6bc7a

Browse files
committed
Disable the @typescript-eslint/comma-spacing rule temporarily
1 parent 915059d commit ff6bc7a

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

index.js

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,17 @@ module.exports = {
8585
allowSingleLine: false
8686
}
8787
],
88-
'comma-spacing': 'off',
89-
'@typescript-eslint/comma-spacing': [
90-
'error',
91-
{
92-
before: false,
93-
after: true
94-
}
95-
],
88+
89+
// Disabled for now. It crashes when run on the Caprine codebase.
90+
// 'comma-spacing': 'off',
91+
// '@typescript-eslint/comma-spacing': [
92+
// 'error',
93+
// {
94+
// before: false,
95+
// after: true
96+
// }
97+
// ],
98+
9699
'default-param-last': 'off',
97100
'@typescript-eslint/default-param-last': 'error',
98101
'@typescript-eslint/consistent-type-assertions': [

0 commit comments

Comments
 (0)