feat(eslint): Rule "no-proto"

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

View File

@ -165,7 +165,7 @@
- [ ] "no-plusplus" - [ ] "no-plusplus"
- [ ] "no-process-env" - [ ] "no-process-env"
- [ ] "no-process-exit" - [ ] "no-process-exit"
- [ ] "no-proto" - [X] "no-proto"
- [ ] "no-prototype-builtins" - [ ] "no-prototype-builtins"
- [ ] "no-redeclare" - [ ] "no-redeclare"
- [ ] "no-regex-spaces" - [ ] "no-regex-spaces"

View File

@ -305,6 +305,9 @@
"no-octal-escape": [ "no-octal-escape": [
"error" "error"
], ],
"no-proto": [
"error"
],
"no-spaced-func": [ "no-spaced-func": [
"off" "off"
], ],