-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprettier.config.js
executable file
·40 lines (36 loc) · 1.12 KB
/
prettier.config.js
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
/*
This is a workaround to make the 2 prettier plugins compatible with each other.
Found solution at https://github.com/tailwindlabs/prettier-plugin-tailwindcss/issues/31#issuecomment-1195411734
When the issue is solved upstream, the prettier settings can (but doesn't have to) be moved back to .prettierrc
See https://prettier.io/docs/en/configuration.html for prettier configuration options
*/
const pluginSortImports = require('@trivago/prettier-plugin-sort-imports')
const pluginTailwindcss = require('prettier-plugin-tailwindcss')
/** @type {import("prettier").Parser} */
const myParser = {
...pluginSortImports.parsers.typescript,
parse: pluginTailwindcss.parsers.typescript.parse,
}
/** @type {import("prettier").Plugin} */
const myPlugin = {
parsers: {
typescript: myParser,
},
}
module.exports = {
plugins: [myPlugin],
endOfLine: 'auto',
singleQuote: true,
semi: false,
importOrder: [
'^(.*).css',
'<THIRD_PARTY_MODULES>',
'^@/components/(.*)$',
'^@/constants/(.*)$',
'^@/context/(.*)$',
'^@/lib/(.*)$',
'^[./]',
],
importOrderSeparation: true,
importOrderSortSpecifiers: true,
}