diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 00:20:54 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 00:20:54 +0300 |
commit | 228ad3183cdbed0b9fde2a1baa589416db530225 (patch) | |
tree | 8d36518bb87b475a8583d2bf621b324cb6adfba8 /src/rules | |
parent | 43ccb96a99b1ba335511b2d45eae50c3f0d664ee (diff) | |
download | eslint-config-228ad3183cdbed0b9fde2a1baa589416db530225.tar.xz eslint-config-228ad3183cdbed0b9fde2a1baa589416db530225.zip |
feat(eslint): Rule "no-constant-condition"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/rules')
-rw-r--r-- | src/rules/default.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rules/default.json b/src/rules/default.json index 963e9dc..6df0efe 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -194,6 +194,12 @@ "no-console": [ "warn" ], + "no-constant-condition": [ + "error", + { + "checkLoops": true + } + ], "no-debugger": [ "warn" ], |