diff options
Diffstat (limited to 'node_modules/tslint/lib/configs/all.js')
-rw-r--r-- | node_modules/tslint/lib/configs/all.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/node_modules/tslint/lib/configs/all.js b/node_modules/tslint/lib/configs/all.js index 73c78a011..2a5f24307 100644 --- a/node_modules/tslint/lib/configs/all.js +++ b/node_modules/tslint/lib/configs/all.js @@ -53,6 +53,7 @@ exports.rules = { "no-var-requires": true, "only-arrow-functions": true, "prefer-for-of": true, + "prefer-readonly": true, "promise-function-async": true, "typedef": [ true, @@ -102,6 +103,7 @@ exports.rules = { true, "check-parameters", ], + "no-dynamic-delete": true, "no-empty": true, "no-eval": true, "no-floating-promises": true, @@ -182,6 +184,7 @@ exports.rules = { // "file-header": No sensible default "deprecation": true, "encoding": true, + "file-name-casing": [true, "camel-case"], "import-spacing": true, "interface-name": true, "interface-over-type-literal": true, @@ -189,6 +192,7 @@ exports.rules = { "match-default-export-name": true, "new-parens": true, "newline-before-return": true, + "newline-per-chained-call": true, "no-angle-bracket-type-assertion": true, "no-boolean-literal-compare": true, "no-consecutive-blank-lines": true, @@ -221,6 +225,7 @@ exports.rules = { "prefer-object-spread": true, "prefer-switch": true, "prefer-template": true, + "prefer-while": true, "quotemark": [ true, "double", |