Skip to content

Commit 3e0f49a

Browse files
committed
disabled jsx-wrap-multiline from tslint-react
because of false positives and being unmaintained (and being incompatible with prettier) - palantir/tslint-react#194 (comment) - palantir/tslint-react#79 (comment)
1 parent 8fc3416 commit 3e0f49a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tslint.ts

+4
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ const rules : tslint.Configuration.RawRulesConfig = Object.assign({}, rulesAirbn
7575
// https://stackoverflow.com/questions/43968779/are-lambda-in-jsx-attributes-an-anti-pattern/43968902#43968902
7676
'jsx-no-lambda': false,
7777
'jsx-boolean-value': false,
78+
// disabled because of false positives and being unmaintained (and being incompatible with prettier)
79+
// https://github.com/palantir/tslint-react/pull/194#issuecomment-478307364
80+
// https://github.com/palantir/tslint-react/issues/79#issuecomment-289923337
81+
'jsx-wrap-multiline': false,
7882

7983
// additions
8084
'no-console': true,

0 commit comments

Comments
 (0)