Added the double quotes rule in the .eslintrc.json

This commit is contained in:
2023-01-15 03:31:24 +01:00
parent 5564fac2ed
commit 884e0be9aa

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}]
}
}