Skip to content

Commit b040e18

Browse files
committed
[#23] 🔧 update import order in prettier config
1 parent 3b0270d commit b040e18

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

prettier.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ module.exports = {
1616
tailwindFunctions: ['clsx', 'twMerge'],
1717
importOrder: [
1818
'^next(.*)$', // Next 관련 import를 최상단으로
19+
'^react(.*)$', // React 관련 import를 최상단으로
1920
'<THIRD_PARTY_MODULES>', // 외부 모듈
2021
'^@/app/api/(.*)$', // api 폴더
2122
'^@/components/(.*)$', // components 폴더를
2223
'^@/queries/(.*)$', // queries 폴더
2324
'^@/hooks/(.*)$', // hooks 폴더
25+
'^@/stores/(.*)$', // stores 폴더
2426
'^@/services/(.*)$', // services 폴더
2527
'^@/utils/(.*)$', // utils 폴더
2628
'^[./]', // 상대 경로

0 commit comments

Comments
 (0)