diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 10:53:27 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 10:53:27 +0300 |
commit | 1178701bf134ab7ef783826e965ded3051fe6e74 (patch) | |
tree | b530ff2e7e6e01914f05cd8a062f41527234255a /src | |
parent | 601b3890646c21fd7764e88a362298eb7b3bbc2c (diff) | |
download | eslint-config-1178701bf134ab7ef783826e965ded3051fe6e74.tar.xz eslint-config-1178701bf134ab7ef783826e965ded3051fe6e74.zip |
feat(eslint): Rule "no-path-concat"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-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 f99eadf..17f61fc 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -322,6 +322,9 @@ "no-octal-escape": [ "error" ], + "no-path-concat": [ + "error" + ], "no-proto": [ "error" ], |