diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 21:49:40 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 21:49:40 +0300 |
commit | e914d9f80e3bdde324a0c62cb144739be57c394f (patch) | |
tree | e338b6914f7716cd0af31ac7ef02cac8209e732e /src/rules | |
parent | 877c5f7ad13849f8b069f1edc862eb83afb5b683 (diff) | |
download | eslint-config-e914d9f80e3bdde324a0c62cb144739be57c394f.tar.xz eslint-config-e914d9f80e3bdde324a0c62cb144739be57c394f.zip |
feat(eslint): Rule "no-undefined"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/rules')
-rw-r--r-- | src/rules/default.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rules/default.json b/src/rules/default.json index 16571dc..7e77f6e 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -149,6 +149,9 @@ "no-ternary": [ "off" ], + "no-undefined": [ + "off" + ], "no-underscore-dangle": [ "error", { |