first commit

This commit is contained in:
Your Name
2024-12-26 12:14:47 +08:00
commit 7dd5e5b259
121 changed files with 15759 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// @see https://prettier.io/docs/en/options
module.exports = {
singleQuote: true,
printWidth: 100,
tabWidth: 2,
useTabs: false,
semi: false,
trailingComma: 'all',
endOfLine: 'auto',
htmlWhitespaceSensitivity: 'ignore',
overrides: [
{
files: '*.json',
options: {
trailingComma: 'none',
},
},
],
}