feat(eslint): no-param-reassign

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-16 14:04:17 +04:00
parent bbf940aafe
commit e87fbc4bb9
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 7 additions and 1 deletions

View File

@ -160,7 +160,7 @@
- [ ] "no-obj-calls"
- [ ] "no-octal"
- [X] "no-octal-escape"
- [ ] "no-param-reassign"
- [X] "no-param-reassign"
- [X] "no-path-concat"
- [ ] "no-plusplus"
- [ ] "no-process-env"

View File

@ -181,6 +181,12 @@
"tabWidth": 4
}
],
"no-param-reassign": [
"warn",
{
"props": true
}
],
"max-lines": [
"off"
],