feat(eslint): Rule "quotes"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2020-02-13 15:12:49 +04:00
parent b47b3caba5
commit 50dc1d4fec
2 changed files with 9 additions and 1 deletions

View File

@ -72,6 +72,14 @@
"unnecessary": true
}
],
"quotes": [
"error",
"double",
{
"allowTemplateLiterals": false,
"avoidEscape": false
}
],
"require-jsdoc": [
"off"
],