tslint.json
にどのルールを含めるべきかわかりません。 tslint.json
の一般的な使用または標準的な使用を誰にでも教えてもらえますか?
Tslint.jsonファイルの書き方
tslint.jsonファイルの書き方
ドキュメント: https://palantir.github.io/tslint
次に例を示しますtslint.json
: https://palantir.github.io/tslint/usage/configuration/
気になるルールのみを使用します: https://palantir.github.io/tslint/rules/
例えば。小さなサンプル:
{
"rules": {
"no-unreachable": true
}
}