feat(typescript): Rule "quotes"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 18:24:16 +04:00
parent dab6a8a84a
commit 268f0c28af
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 14 additions and 2 deletions

View File

@ -355,7 +355,7 @@
- [ ] "prefer-regexp-exec"
- [ ] "prefer-string-starts-ends-with"
- [ ] "promise-function-async"
- [ ] "quotes"
- [X] "quotes"
- [ ] "require-array-sort-compare"
- [ ] "require-await"
- [ ] "restrict-plus-operands"

View File

@ -1 +1,13 @@
{}
{
"@typescript-eslint/quotes": [
"error",
"double",
{
"allowTemplateLiterals": false,
"avoidEscape": false
}
],
"quotes": [
"off"
]
}