Reverting changes regarding single quotes

This commit is contained in:
David Négrier 2021-07-23 14:55:14 +02:00
parent 4ea6a12d20
commit a146065cc6
2 changed files with 2 additions and 7 deletions

View file

@ -25,10 +25,6 @@
], ],
"rules": { "rules": {
"no-unused-vars": "off", "no-unused-vars": "off",
"quotes": [
"warn",
"single"
],
"@typescript-eslint/no-explicit-any": "error", "@typescript-eslint/no-explicit-any": "error",
// TODO: remove those ignored rules and write a stronger code! // TODO: remove those ignored rules and write a stronger code!
"@typescript-eslint/no-floating-promises": "off", "@typescript-eslint/no-floating-promises": "off",
@ -39,4 +35,4 @@
"@typescript-eslint/no-unsafe-member-access": "off", "@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/restrict-template-expressions": "off" "@typescript-eslint/restrict-template-expressions": "off"
} }
} }

View file

@ -1,5 +1,4 @@
{ {
"printWidth": 120, "printWidth": 120,
"tabWidth": 4, "tabWidth": 4
"singleQuote": true
} }