feat(eslint): Rule "no-octal-escape"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-14 01:43:53 +04:00
parent 2eec58795d
commit 2d8a11cb2f
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -159,7 +159,7 @@
- [X] "no-new-wrappers" - [X] "no-new-wrappers"
- [ ] "no-obj-calls" - [ ] "no-obj-calls"
- [ ] "no-octal" - [ ] "no-octal"
- [ ] "no-octal-escape" - [X] "no-octal-escape"
- [ ] "no-param-reassign" - [ ] "no-param-reassign"
- [ ] "no-path-concat" - [ ] "no-path-concat"
- [ ] "no-plusplus" - [ ] "no-plusplus"

View File

@ -302,6 +302,9 @@
"no-new-wrappers": [ "no-new-wrappers": [
"error" "error"
], ],
"no-octal-escape": [
"error"
],
"no-spaced-func": [ "no-spaced-func": [
"off" "off"
], ],