From b2c49c7507fa3e8180d4595abca2bcf919911780 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Thu, 12 Dec 2024 21:20:18 +0300 Subject: [PATCH] added prettier overrides --- code/HTML/.prettierrc.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/HTML/.prettierrc.json b/code/HTML/.prettierrc.json index 87437bd..a925caa 100644 --- a/code/HTML/.prettierrc.json +++ b/code/HTML/.prettierrc.json @@ -1,10 +1,11 @@ { - "printWidth": 100, + "printWidth": 132, "bracketSpacing": true, "bracketSameLine": true, "semi": true, "singleQuote": true, "arrowParens": "always", "htmlWhitespaceSensitivity": "strict", - "endOfLine": "lf" + "endOfLine": "lf", + "overrides": [{ "files": "*.json", "options": { "printWidth": 999 } }] }