From f518b3b3c0ec11f0e394b52a51753fd322e45109 Mon Sep 17 00:00:00 2001 From: Willem Leuverink Date: Tue, 12 Dec 2023 13:22:04 +0100 Subject: [PATCH] fix conflicting configs --- src/Integrations/PrettierBlade/.prettierrc.json | 7 ++++--- src/Integrations/TLint/tlint.json | 5 ++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/Integrations/PrettierBlade/.prettierrc.json b/src/Integrations/PrettierBlade/.prettierrc.json index a0ab080..9f4a8cc 100644 --- a/src/Integrations/PrettierBlade/.prettierrc.json +++ b/src/Integrations/PrettierBlade/.prettierrc.json @@ -13,9 +13,10 @@ } } ], + + "htmlWhitespaceSensitivity": "css", "sortTailwindcssClasses": true, "singleAttributePerLine": true, "bracketSameLine": false, - "printWidth": 120, - "tabWidth": 4 -} + "printWidth": 600 + } diff --git a/src/Integrations/TLint/tlint.json b/src/Integrations/TLint/tlint.json index 3cb9771..cb3befd 100644 --- a/src/Integrations/TLint/tlint.json +++ b/src/Integrations/TLint/tlint.json @@ -1,3 +1,6 @@ { - "preset": "tighten" + "preset": "tighten", + "disabled": [ + "QualifiedNamesOnlyForClassName" + ] }