We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b0270d commit b040e18Copy full SHA for b040e18
prettier.config.js
@@ -16,11 +16,13 @@ module.exports = {
16
tailwindFunctions: ['clsx', 'twMerge'],
17
importOrder: [
18
'^next(.*)$', // Next 관련 import를 최상단으로
19
+ '^react(.*)$', // React 관련 import를 최상단으로
20
'<THIRD_PARTY_MODULES>', // 외부 모듈
21
'^@/app/api/(.*)$', // api 폴더
22
'^@/components/(.*)$', // components 폴더를
23
'^@/queries/(.*)$', // queries 폴더
24
'^@/hooks/(.*)$', // hooks 폴더
25
+ '^@/stores/(.*)$', // stores 폴더
26
'^@/services/(.*)$', // services 폴더
27
'^@/utils/(.*)$', // utils 폴더
28
'^[./]', // 상대 경로
0 commit comments