Skip to content

Commit e129e93

Browse files
committed
disable indent and max-len
1 parent 25874b8 commit e129e93

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/eslint-config-algolia/rules/typescript.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ module.exports = {
145145
],
146146
'@stylistic/comma-spacing': ['error'],
147147
'@stylistic/func-call-spacing': ['error'],
148-
'@stylistic/indent': ['error', 2],
148+
'@stylistic/indent': 'off', // handled by prettier
149+
'@stylistic/max-len': 'off', // handled by prettier
149150
'@typescript-eslint/no-confusing-non-null-assertion': ['error'],
150151
'@typescript-eslint/no-extra-non-null-assertion': ['error'],
151152
'@typescript-eslint/no-non-null-asserted-optional-chain': ['error'],

0 commit comments

Comments
 (0)