From a146065cc6673401df13b7b93260a0bb30a5d959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Fri, 23 Jul 2021 14:55:14 +0200 Subject: [PATCH] Reverting changes regarding single quotes --- front/.eslintrc.json | 6 +----- front/.prettierrc.json | 3 +-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/front/.eslintrc.json b/front/.eslintrc.json index 944e3893..45b44456 100644 --- a/front/.eslintrc.json +++ b/front/.eslintrc.json @@ -25,10 +25,6 @@ ], "rules": { "no-unused-vars": "off", - "quotes": [ - "warn", - "single" - ], "@typescript-eslint/no-explicit-any": "error", // TODO: remove those ignored rules and write a stronger code! "@typescript-eslint/no-floating-promises": "off", @@ -39,4 +35,4 @@ "@typescript-eslint/no-unsafe-member-access": "off", "@typescript-eslint/restrict-template-expressions": "off" } -} \ No newline at end of file +} diff --git a/front/.prettierrc.json b/front/.prettierrc.json index b4f04948..e8980d15 100644 --- a/front/.prettierrc.json +++ b/front/.prettierrc.json @@ -1,5 +1,4 @@ { "printWidth": 120, - "tabWidth": 4, - "singleQuote": true + "tabWidth": 4 }