forked from MatrixAges/polywise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierrc
More file actions
32 lines (32 loc) · 747 Bytes
/
Copy path.prettierrc
File metadata and controls
32 lines (32 loc) · 747 Bytes
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
{
"$schema": "https://json.schemastore.org/prettierrc",
"plugins": ["@ianvs/prettier-plugin-sort-imports", "prettier-plugin-tailwindcss-pro"],
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120,
"useTabs": true,
"semi": false,
"tabWidth": 6,
"jsxSingleQuote": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"importOrderCaseSensitive": false,
"endOfLine": "lf",
"importOrder": [
"^react$|^(react)$",
"<THIRD_PARTY_MODULES>",
"",
"^@/(.*)$",
"",
"^[./](?!.*\\.css$)",
"",
"^.*\\.module\\.css$",
"",
"<TYPES>^(node:)",
"<TYPES>",
"<TYPES>^[.]"
],
"importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"],
"importOrderTypeScriptVersion": "5.0.0",
"useTailwindFormat": true
}