Je ne sais pas quelle règle doit être incluse dans tslint.json
. Quelqu'un peut-il me montrer l'utilisation courante ou standard de tslint.json
?
Comment écrire un fichier tslint.json?
comment écrire un fichier tslint.json
Les documents: https://palantir.github.io/tslint
Voici un exemple tslint.json
: https://palantir.github.io/tslint/usage/configuration/
Vous utiliseriez uniquement les règles qui vous intéressent: https://palantir.github.io/tslint/rules/
Par exemple. un petit échantillon:
{
"rules": {
"no-unreachable": true
}
}