-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprettier.config.js
More file actions
executable file
·226 lines (169 loc) · 5.07 KB
/
prettier.config.js
File metadata and controls
executable file
·226 lines (169 loc) · 5.07 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/** @type {import('prettier').Config} */
export default {
// =========================================================================
// Core Formatting Options
// =========================================================================
// Max line length before wrapping. 80 is standard for readability.
printWidth: 80,
// Use tabs for indentation (accessibility friendly).
useTabs: true,
// Number of spaces per tab (visual width).
tabWidth: 4,
// Always use semicolons at end of statements.
semi: true,
// Use double quotes instead of single quotes.
singleQuote: false,
// Trailing commas wherever valid (ES5+). Helps git diffs.
trailingComma: "all",
// Put > on the same line as the last attribute in JSX/HTML.
bracketSameLine: true,
// Print spaces between brackets in object literals. { foo: bar }
bracketSpacing: true,
// Always include parens for arrow functions. (x) => x
arrowParens: "always",
// Line endings: Linux/macOS style (LF).
endOfLine: "lf",
// Wrap markdown text as-is/always since some renderers require it.
proseWrap: "always",
// Quote properties in objects only when necessary.
quoteProps: "preserve",
// =========================================================================
// HTML / JSX Specifics
// =========================================================================
// CSS-style whitespace handling in HTML (respects display: inline).
htmlWhitespaceSensitivity: "css",
// Use double quotes in JSX attributes.
jsxSingleQuote: false,
// Indent script and style tags in Vue files.
vueIndentScriptAndStyle: true,
// Auto-format embedded code blocks (like in Markdown).
embeddedLanguageFormatting: "auto",
// =========================================================================
// Plugins
// =========================================================================
// Note: 'prettier-plugin-tailwindcss' MUST be loaded last to work
// correctly with other plugins.
plugins: [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-astro",
"prettier-plugin-organize-attributes",
"prettier-plugin-packagejson",
// Shell script support
"prettier-plugin-sh",
// TOML support
"prettier-plugin-toml",
// MUST BE LAST
"prettier-plugin-tailwindcss",
],
// =========================================================================
// Plugin: Organize Attributes
// =========================================================================
// Sort attributes alphabetically? "ASC" (A-Z) or false (disabled).
attributeSort: "ASC",
// Case sensitivity for attribute sorting.
attributeIgnoreCase: false,
// Group attributes using Regex. '$DEFAULT' catches everything else.
attributeGroups: ["$DEFAULT", "^data-"],
// =========================================================================
// Plugin: Sort Imports (@ianvs/prettier-plugin-sort-imports)
// =========================================================================
// Define the order of imports. Empty strings create blank lines.
importOrder: [
// Core aliases
"^@core/(.*)$",
"",
// Server aliases
"^@server/(.*)$",
"",
// UI aliases
"^@ui/(.*)$",
"",
// Everything not matched above
"<THIRD_PARTY_MODULES>",
"",
// Relative imports
"^[./]",
],
// parser plugins to enable for import sorting analysis.
importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"],
importOrderTypeScriptVersion: "5.5.4",
// =========================================================================
// File Overrides
// =========================================================================
// Note: tailwindConfig is only applied to files that use Tailwind CSS classes
overrides: [
// JavaScript / JSX
{
files: "*.{js,mjs,cjs,jsx}",
options: {
parser: "babel",
},
},
// TypeScript / TSX
{
files: "*.{ts,mts,cts,tsx}",
options: {
parser: "babel-ts",
},
},
// Astro
{
files: "*.astro",
options: {
parser: "astro",
},
},
// Svelte
{
files: "*.svelte",
options: {
parser: "svelte",
},
},
// Lua (requires plugin, though not strictly standard prettier)
{
files: "*.lua",
options: {
parser: "lua",
},
},
// TOML
{
files: "*.toml",
options: {
parser: "toml",
},
},
// Markdown
{
files: "*.md",
options: {
parser: "markdown",
},
},
// ---------------------------------------------------------------------
// JSON Configuration
// ---------------------------------------------------------------------
// 1. package.json: STRICT JSON.
// Must use "json-stringify" to forbid trailing commas/comments which break npm/node.
{
files: "package.json",
options: {
parser: "json-stringify",
trailingComma: "none",
},
},
// 2. Other JSONs (VS Code settings, tsconfig, etc.): LOOSE JSON.
// Allows comments and trailing commas (JSONC).
{
files: "*.json",
excludeFiles: ["package.json"],
options: {
// Prettier's 'json' parser allows comments by default
parser: "json",
// Optional: keep JSON standard compliant
trailingComma: "none",
},
},
],
};