feat(eslint): Rule "quote-props"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 15:09:56 +04:00
parent 0e39bae754
commit b47b3caba5
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 10 additions and 1 deletions

View File

@ -245,7 +245,7 @@
- [ ] "prefer-rest-params"
- [ ] "prefer-spread"
- [ ] "prefer-template"
- [ ] "quote-props"
- [X] "quote-props"
- [ ] "quotes"
- [ ] "radix"
- [ ] "require-atomic-updates"

View File

@ -63,6 +63,15 @@
"prefer-reflect": [
"off"
],
"quote-props": [
"error",
"consistent-as-needed",
{
"keywords": true,
"numbers": true,
"unnecessary": true
}
],
"require-jsdoc": [
"off"
],