feat(eslint): Rule "quote-props"

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

View File

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