We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffa332e commit e617145Copy full SHA for e617145
.prettierrc.json
prettier.config.mjs
@@ -0,0 +1,17 @@
1
+/** @type {import('prettier').Config} */
2
+export default {
3
+ arrowParens: "avoid",
4
+ bracketSameLine: false,
5
+ bracketSpacing: true,
6
+ embeddedLanguageFormatting: "auto",
7
+ htmlWhitespaceSensitivity: "css",
8
+ jsxSingleQuote: false,
9
+ quoteProps: "consistent",
10
+ printWidth: 80,
11
+ semi: true,
12
+ singleAttributePerLine: false,
13
+ singleQuote: true,
14
+ tabWidth: 2,
15
+ trailingComma: "all",
16
+ useTabs: false,
17
+}
0 commit comments