Added the double quotes rule in the .eslintrc.json

This commit is contained in:
Mathias Wagner 2023-01-15 03:31:24 +01:00
parent 5564fac2ed
commit 884e0be9aa
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -7,6 +7,7 @@
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-use-before-define": "warn",
"@typescript-eslint/no-unused-vars": "warn"
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/quotes": ["warn", "double", {"allowTemplateLiterals": true}]
}
}