Skip to content

Commit 6619f13

Browse files
committed
[conf] disable multiline ternary styling rule and let biome handle it
1 parent cd3d84b commit 6619f13

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

source/configs/axiom.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ export const axiom: Linter.Config[] = [
1010
'@typescript-eslint/no-floating-promises': 'error',
1111
// Reason: for..of works on any iterable
1212
// Reason: for..of supports all kinds of control flow in the loop body, like `continue`, `break`, `return`, `yield` and `await`.
13-
'@typescript-eslint/prefer-for-of': 'error'
13+
'@typescript-eslint/prefer-for-of': 'error',
14+
// Reason: style differs from biome fixer
15+
'@stylistic/multiline-ternary': 'off'
1416
}
1517
}
1618
]

0 commit comments

Comments
 (0)