-
-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy path.prettierrc.mjs
More file actions
38 lines (37 loc) · 800 Bytes
/
.prettierrc.mjs
File metadata and controls
38 lines (37 loc) · 800 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
33
34
35
36
37
38
// .prettierrc.mjs
/** @type {import("prettier").Config} */
export default {
trailingComma: 'es5',
semi: true,
singleQuote: true,
jsxSingleQuote: false,
tabWidth: 2,
plugins: [
'@ianvs/prettier-plugin-sort-imports',
'prettier-plugin-astro',
'prettier-plugin-tailwindcss',
],
importOrder: [
'^(react/(.*)$)|^(react$)|^(react-native(.*)$)',
'^(next/(.*)$)|^(next$)',
'^(expo(.*)$)|^(expo$)',
'<THIRD_PARTY_MODULES>',
'',
'^@/components/(.*)$',
'^@/layouts/(.*)$',
'^@/ui/(.*)$',
'^@/utils/(.*)$',
'^@/styles/(.*)$',
'^@/(.*)$',
'^[./]',
],
importOrderParserPlugins: ['typescript', 'jsx', 'decorators-legacy'],
overrides: [
{
files: '*.astro',
options: {
parser: 'astro',
},
},
],
};