feat(eslint): no-process-env

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-19 14:31:47 +04:00
parent 5e92aa597a
commit 4aeb8473fa
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -163,7 +163,7 @@
- [ ] "no-param-reassign" - [ ] "no-param-reassign"
- [X] "no-path-concat" - [X] "no-path-concat"
- [ ] "no-plusplus" - [ ] "no-plusplus"
- [ ] "no-process-env" - [X] "no-process-env"
- [ ] "no-process-exit" - [ ] "no-process-exit"
- [X] "no-proto" - [X] "no-proto"
- [ ] "no-prototype-builtins" - [ ] "no-prototype-builtins"

View File

@ -350,6 +350,9 @@
"no-path-concat": [ "no-path-concat": [
"error" "error"
], ],
"no-process-env": [
"off"
],
"no-proto": [ "no-proto": [
"error" "error"
], ],