Update TSLint configuration to detect bad indentation.

This commit is contained in:
Chris Gavin 2020-06-23 14:19:51 +01:00
parent a1d945f14f
commit 211ad30f72
No known key found for this signature in database
GPG key ID: 07F950B80C27E4DA
136 changed files with 15588 additions and 3 deletions

View file

@ -2,6 +2,9 @@
"extends": [
"tslint"
],
"rulesDirectory": [
"./node_modules/tslint-eslint-rules/dist/rules/"
],
"rules": {
"align": [
true,
@ -17,9 +20,9 @@
"curly": false,
"eofline": true,
"forin": true,
"indent": [
"ter-indent": [
true,
"spaces"
2
],
"jsdoc-format": true,
"label-position": true,
@ -138,4 +141,4 @@
"check-type"
]
}
}
}