feat(eslint): Rule "prefer-reflect"

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

View File

@ -240,7 +240,7 @@
- [ ] "prefer-numeric-literals"
- [ ] "prefer-object-spread"
- [ ] "prefer-promise-reject-errors"
- [ ] "prefer-reflect"
- [X] "prefer-reflect"
- [ ] "prefer-regex-literals"
- [ ] "prefer-rest-params"
- [ ] "prefer-spread"

View File

@ -32,5 +32,8 @@
{
"allowIndentationTabs": true
}
],
"prefer-reflect": [
"off"
]
}