From 11db2cfed9ff7dc2b4f9786b6baae2a3dec8929c Mon Sep 17 00:00:00 2001 From: bb_pan Date: Wed, 28 May 2025 17:45:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E5=B7=A5=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- prettier.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 prettier.config.js diff --git a/prettier.config.js b/prettier.config.js new file mode 100644 index 0000000..4d22337 --- /dev/null +++ b/prettier.config.js @@ -0,0 +1,10 @@ +module.exports = { + tabWidth: 2, + semi: false, + vueIndentScriptAndStyle: false, + singleQuote: true, + trailingComma: 'all', + proseWrap: 'never', + htmlWhitespaceSensitivity: 'strict', + endOfLine: 'auto', +}