diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 14:59:37 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 15:00:20 +0300 |
commit | 3628767ff2ddd6e52b8b3eb0fa0651d9c2faa5ad (patch) | |
tree | 5707348ea58ae62618beaf586e214831dcfaf8d4 /src/rules/eslint.json | |
parent | 3a12b56865e72ab69ea0be7292394faa9a7126bc (diff) | |
download | eslint-config-3628767ff2ddd6e52b8b3eb0fa0651d9c2faa5ad.tar.xz eslint-config-3628767ff2ddd6e52b8b3eb0fa0651d9c2faa5ad.zip |
feat(eslint): Rule "no-alert"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/rules/eslint.json')
-rw-r--r-- | src/rules/eslint.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rules/eslint.json b/src/rules/eslint.json index 96823ca..16c1d72 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -54,6 +54,9 @@ "newline-before-return": [ "off" ], + "no-alert": [ + "warn" + ], "no-catch-shadow": [ "off" ], |