-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierrc
37 lines (37 loc) · 921 Bytes
/
.prettierrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"trailingComma": "es5",
"bracketSameLine": true,
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"tabWidth": 3,
"semi": true,
"singleQuote": true,
"printWidth": 100,
"singleAttributePerLine": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": true,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"organizeImportsSkipDestructiveCodeActions": true,
"attributeGroups": [
"^class$",
"^(id|name)$",
"",
"^aria-"
],
"attributeIgnoreCase": false,
"attributeSort": "ASC",
"useTabs": false,
"vueIndentScriptAndStyle": false,
"tailwindConfig": "./tailwind.config.js",
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-organize-attributes",
"prettier-plugin-tailwindcss"
],
"pluginSearchDirs": false
}