From ab0e98059c20921fdeac37e5162b9645ed4610a5 Mon Sep 17 00:00:00 2001 From: Nathan Smith Date: Sun, 18 Feb 2024 23:54:50 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20Remove=20unused=20edito?= =?UTF-8?q?r=20config,=20make=20prettier=20config=20explicit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 10 ---------- .prettierrc | 6 +++++- 2 files changed, 5 insertions(+), 11 deletions(-) delete mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 84b8a66..0000000 --- a/.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -# top-most EditorConfig file -root = true - -[*] -charset = utf-8 -end_of_line = lf -insert_final_newline = true -indent_style = tab -indent_size = 4 -tab_width = 4 diff --git a/.prettierrc b/.prettierrc index af0cfdf..1921422 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,8 @@ { "printWidth": 120, - "tabWidth": 2 + "tabWidth": 2, + "useTabs": true, + "singleQuote": false, + "semi": true, + "trailingComma": "all" }