私はそのようなものを持っていconfig
ますtslint.json
one line rule
one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
そのようなコード行がある場合:
if(SomethingTrue) { next("a"); }
else { next("b"); }
警告があります:
(one-line) file.ts[17, 9]: misplaced 'else'
なぜそれが起こるのですか?持っているのは悪い習慣line else
ですか?