1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-02-24 23:38:23 +00:00

Added eslint rule: prefer single quotes when possible, prefer double to escaping

This commit is contained in:
snobu
2020-04-09 12:48:49 +03:00
parent 427b58d97d
commit a6bfd54bfd
4 changed files with 21 additions and 20 deletions

View File

@@ -22,6 +22,7 @@
"rules": {
"semi": [2, "always"],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
"@typescript-eslint/no-unused-vars": "error",
"quotes": [2, "single", { "avoidEscape": true }]
}
}