Skip to content

Commit d08b9a4

Browse files
authored
prettier, eslint rule 반영 (#1051)
1 parent 59feedb commit d08b9a4

17 files changed

+203
-49
lines changed

.eslintrc.json

+17-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@
1818
"plugin:import/warnings",
1919
"plugin:import/typescript"
2020
],
21-
"ignorePatterns": ["dist", "*.config.ts", "*.common.js", "*.prod.js", "*.dev.js", "*.polyfills.js"],
21+
"ignorePatterns": [
22+
"dist",
23+
"*.config.ts",
24+
"*.common.js",
25+
"*.prod.js",
26+
"*.dev.js",
27+
"*.polyfills.js"
28+
],
2229
"parser": "@typescript-eslint/parser",
2330
"plugins": ["react-refresh", "react", "import", "@typescript-eslint"],
2431
"settings": {
@@ -64,7 +71,11 @@
6471
"import/order": [
6572
"error",
6673
{
67-
"groups": [["builtin", "external"], ["internal"], ["parent", "sibling", "index", "type"]],
74+
"groups": [
75+
["builtin", "external"],
76+
["internal"],
77+
["parent", "sibling", "index", "type"]
78+
],
6879
"warnOnUnassignedImports": true,
6980
"alphabetize": { "order": "asc" },
7081
"newlines-between": "always",
@@ -113,7 +124,10 @@
113124
"tsx": "never"
114125
}
115126
],
116-
"react-refresh/only-export-components": ["error", { "allowConstantExport": false }],
127+
"react-refresh/only-export-components": [
128+
"warn",
129+
{ "allowConstantExport": false }
130+
],
117131
"react/no-unknown-property": ["error", { "ignore": ["css"] }],
118132
"import/no-default-export": "error"
119133
},

.github/workflows/frontend_ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
run: pnpm run tsc
3333
working-directory: ${{ env.frontend-directory }}
3434

35+
- name: 린트 체크 실행
36+
run: pnpm run lint
37+
working-directory: ${{ env.frontend-directory }}
38+
3539
- name: 테스트 실행
3640
run: pnpm run test
3741
working-directory: ${{ env.frontend-directory }}

frontend/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
"build:report": "webpack-bundle-analyzer --port 8888 dist/bundle-stats.json",
1515
"storybook": "storybook dev -p 6006",
1616
"build-storybook": "storybook build",
17-
"lint:style": "stylelint '**/style.ts' --fix"
17+
"lint:style": "stylelint '**/style.ts' --fix",
18+
"lint": "eslint src --ext .ts,.tsx",
19+
"lint:fix": "eslint src --ext .ts,.tsx --fix"
1820
},
1921
"keywords": [],
2022
"author": "",

frontend/src/api/categories.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@ export const getCategoryList = async (memberId: number) => {
1414
};
1515

1616
export const postCategory = async (newCategory: Omit<Category, 'id'>) => {
17-
const response = await apiClient.post(`${END_POINTS.CATEGORIES}`, newCategory);
17+
const response = await apiClient.post(
18+
`${END_POINTS.CATEGORIES}`,
19+
newCategory,
20+
);
1821

1922
return await response.json();
2023
};
2124

22-
export const editCategory = async (body: CategoryEditRequest) => await apiClient.put(`${END_POINTS.CATEGORIES}`, body);
25+
export const editCategory = async (body: CategoryEditRequest) =>
26+
await apiClient.put(`${END_POINTS.CATEGORIES}`, body);

frontend/src/api/index.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ export {
88
editTemplate,
99
deleteTemplate,
1010
} from './templates';
11-
export { postSignup, postLogin, postLogout, getLoginState, checkName } from './authentication';
11+
export {
12+
postSignup,
13+
postLogin,
14+
postLogout,
15+
getLoginState,
16+
checkName,
17+
} from './authentication';
1218
export { getCategoryList, postCategory, editCategory } from './categories';
1319
export { getTagList } from './tags';
1420
export { postLike, deleteLike } from './like';

frontend/src/hooks/category/useCategoryNameValidation.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import type { Category } from '@/types';
44

55
const INVALID_NAMES = ['전체보기', '카테고리 없음', ''];
66

7-
export const useCategoryNameValidation = (categoryList: Category[], editedCategoryList: Category[]) => {
7+
export const useCategoryNameValidation = (
8+
categoryList: Category[],
9+
editedCategoryList: Category[],
10+
) => {
811
const [invalidIds, setInvalidIds] = useState<number[]>([]);
912

1013
useEffect(() => {
@@ -28,7 +31,9 @@ export const useCategoryNameValidation = (categoryList: Category[], editedCatego
2831
});
2932

3033
editedCategoryList.forEach(({ id, name }) => {
31-
const originalName = categoryList.find((category) => category.id === id)?.name;
34+
const originalName = categoryList.find(
35+
(category) => category.id === id,
36+
)?.name;
3237

3338
if (INVALID_NAMES.includes(name)) {
3439
invalidNames.add(id);

frontend/src/pages/LandingPage/LandingPage.tsx

+15-4
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,18 @@ const LandingPage = () => {
2525
const { isLogin } = useAuth();
2626

2727
const EXPLAIN = [
28-
{ title: 'ZAP하게 저장', description: '자주 쓰는 나의 코드를 간편하게 저장하세요' },
29-
{ title: 'ZAP하게 관리', description: '직관적인 분류 시스템으로 체계적으로 관리하세요' },
30-
{ title: 'ZAP하게 검색', description: '필요한 나의 코드를 빠르게 찾아 사용하세요' },
28+
{
29+
title: 'ZAP하게 저장',
30+
description: '자주 쓰는 나의 코드를 간편하게 저장하세요',
31+
},
32+
{
33+
title: 'ZAP하게 관리',
34+
description: '직관적인 분류 시스템으로 체계적으로 관리하세요',
35+
},
36+
{
37+
title: 'ZAP하게 검색',
38+
description: '필요한 나의 코드를 빠르게 찾아 사용하세요',
39+
},
3140
];
3241

3342
return (
@@ -59,7 +68,9 @@ const LandingPage = () => {
5968
<CheckCircleIcon width={ICON_SIZE.LARGE} />
6069
<Text.Large color='black'>{el.title}</Text.Large>
6170
</Flex>
62-
<Text.Medium color={theme.color.light.secondary_600}>{el.description}</Text.Medium>
71+
<Text.Medium color={theme.color.light.secondary_600}>
72+
{el.description}
73+
</Text.Medium>
6374
</S.Card>
6475
))}
6576
</S.CardSection>

frontend/src/pages/MemberTemplatePage/components/CategoryEditModal/CategoryEditModal.style.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ export const EditCategoryItemList = styled.div`
99
width: 100%;
1010
`;
1111

12-
export const EditCategoryItem = styled.div<{ hasError?: boolean; isButton?: boolean; disabled?: boolean }>`
12+
export const EditCategoryItem = styled.div<{
13+
hasError?: boolean;
14+
isButton?: boolean;
15+
disabled?: boolean;
16+
}>`
1317
cursor: move;
1418
1519
display: flex;

frontend/src/pages/MemberTemplatePage/components/CategoryEditModal/CategoryEditModal.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ interface CategoryEditModalProps {
1212
onDeleteCategory: (deletedIds: number[]) => void;
1313
}
1414

15-
const CategoryEditModal = ({ isOpen, toggleModal, categoryList, onDeleteCategory }: CategoryEditModalProps) => {
15+
const CategoryEditModal = ({
16+
isOpen,
17+
toggleModal,
18+
categoryList,
19+
onDeleteCategory,
20+
}: CategoryEditModalProps) => {
1621
const {
1722
editedCategoryList,
1823
deleteCategoryIds,

frontend/src/pages/MemberTemplatePage/components/CategoryEditModal/CategoryItems.tsx

+25-6
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,25 @@ const CategoryItems = ({
3434
onNameInputChange,
3535
onNameInputBlur,
3636
}: CategoryItemsProps) => {
37-
const orderedCategoryList = [...editedCategoryList].sort((a, b) => a.ordinal - b.ordinal);
37+
const orderedCategoryList = [...editedCategoryList].sort(
38+
(a, b) => a.ordinal - b.ordinal,
39+
);
3840

3941
const dragItem = useRef<number | null>(null);
4042
const dragOverItem = useRef<number | null>(null);
4143

42-
const handleDragStart = (e: React.DragEvent<HTMLDivElement>, position: number) => {
44+
const handleDragStart = (
45+
e: React.DragEvent<HTMLDivElement>,
46+
position: number,
47+
) => {
4348
dragItem.current = position;
4449
e.currentTarget.style.opacity = '0.5';
4550
};
4651

47-
const handleDragEnter = (e: React.DragEvent<HTMLDivElement>, position: number) => {
52+
const handleDragEnter = (
53+
e: React.DragEvent<HTMLDivElement>,
54+
position: number,
55+
) => {
4856
dragOverItem.current = position;
4957
e.currentTarget.style.backgroundColor = theme.color.dark.white;
5058
};
@@ -57,15 +65,23 @@ const CategoryItems = ({
5765
e.currentTarget.style.opacity = '1';
5866
e.currentTarget.style.backgroundColor = '';
5967

60-
const reorderedCategoryList = getReorderedCategoryList(orderedCategoryList, dragItem.current, dragOverItem.current);
68+
const reorderedCategoryList = getReorderedCategoryList(
69+
orderedCategoryList,
70+
dragItem.current,
71+
dragOverItem.current,
72+
);
6173

6274
handleOrdinalChange(reorderedCategoryList);
6375

6476
dragItem.current = null;
6577
dragOverItem.current = null;
6678
};
6779

68-
const getReorderedCategoryList = (categoryList: Category[], startIndex: number, endIndex: number) => {
80+
const getReorderedCategoryList = (
81+
categoryList: Category[],
82+
startIndex: number,
83+
endIndex: number,
84+
) => {
6985
const copyListItems = [...categoryList];
7086
const dragItem = copyListItems[startIndex];
7187

@@ -110,7 +126,10 @@ const CategoryItems = ({
110126
) : (
111127
<ExistingCategoryItem
112128
id={id}
113-
name={editedCategoryList.find((category) => category.id === id)?.name ?? name}
129+
name={
130+
editedCategoryList.find((category) => category.id === id)
131+
?.name ?? name
132+
}
114133
isEditing={editingCategoryId === id}
115134
isDeleted={deleteCategoryIds.includes(id)}
116135
onChange={(e) => onNameInputChange(id, e.target.value)}

frontend/src/pages/MemberTemplatePage/components/CategoryEditModal/CategoryName.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ import { theme } from '@/style/theme';
66

77
const CategoryName = ({ children }: PropsWithChildren) => (
88
<Flex align='center' width='100%' height='2.5rem'>
9-
<DragIcon color={theme.color.light.secondary_400} css={{ marginRight: '0.5rem' }} />
9+
<DragIcon
10+
color={theme.color.light.secondary_400}
11+
css={{ marginRight: '0.5rem' }}
12+
/>
1013
{children}
1114
</Flex>
1215
);

frontend/src/pages/MemberTemplatePage/components/CategoryEditModal/CategoryNameInput.tsx

+11-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,17 @@ interface CategoryNameInputProps {
1010
onKeyDown: (e: React.KeyboardEvent) => void;
1111
}
1212

13-
const CategoryNameInput = ({ value, onChange, onBlur, onKeyDown }: CategoryNameInputProps) => (
14-
<Input size='large' variant='text' style={{ width: '100%', height: '2.375rem' }}>
13+
const CategoryNameInput = ({
14+
value,
15+
onChange,
16+
onBlur,
17+
onKeyDown,
18+
}: CategoryNameInputProps) => (
19+
<Input
20+
size='large'
21+
variant='text'
22+
style={{ width: '100%', height: '2.375rem' }}
23+
>
1524
<Input.TextField
1625
type='text'
1726
value={value}

frontend/src/pages/MemberTemplatePage/components/CategoryEditModal/ExistingCategoryItem.tsx

+16-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ const ExistingCategoryItem = ({
3434
{isDeleted ? (
3535
<>
3636
<CategoryName>
37-
<Text.Medium color={theme.color.light.analogous_primary_400} textDecoration='line-through'>
37+
<Text.Medium
38+
color={theme.color.light.analogous_primary_400}
39+
textDecoration='line-through'
40+
>
3841
{name}
3942
</Text.Medium>
4043
</CategoryName>
@@ -44,14 +47,24 @@ const ExistingCategoryItem = ({
4447
<>
4548
<CategoryName>
4649
{isEditing ? (
47-
<CategoryNameInput value={name} onChange={onChange} onBlur={onBlur} onKeyDown={onKeyDown} />
50+
<CategoryNameInput
51+
value={name}
52+
onChange={onChange}
53+
onBlur={onBlur}
54+
onKeyDown={onKeyDown}
55+
/>
4856
) : (
4957
<Text.Medium color={theme.color.light.secondary_500} weight='bold'>
5058
{name}
5159
</Text.Medium>
5260
)}
5361
</CategoryName>
54-
<IconButtons edit delete onEditClick={() => onEditClick(id)} onDeleteClick={() => onDeleteClick(id)} />
62+
<IconButtons
63+
edit
64+
delete
65+
onEditClick={() => onEditClick(id)}
66+
onDeleteClick={() => onDeleteClick(id)}
67+
/>
5568
</>
5669
)}
5770
</>

frontend/src/pages/MemberTemplatePage/components/CategoryEditModal/IconButtons.tsx

+18-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@ interface IconButtonsProps {
1212
delete?: boolean;
1313
}
1414

15-
const IconButtons = ({ onRestoreClick, onEditClick, onDeleteClick, restore, edit, delete: del }: IconButtonsProps) => (
15+
const IconButtons = ({
16+
onRestoreClick,
17+
onEditClick,
18+
onDeleteClick,
19+
restore,
20+
edit,
21+
delete: del,
22+
}: IconButtonsProps) => (
1623
<S.IconButtonContainer>
1724
{restore && (
1825
<S.IconButtonWrapper onClick={onRestoreClick}>
@@ -21,12 +28,20 @@ const IconButtons = ({ onRestoreClick, onEditClick, onDeleteClick, restore, edit
2128
)}
2229
{edit && (
2330
<S.IconButtonWrapper onClick={onEditClick}>
24-
<PencilIcon width={ICON_SIZE.MEDIUM_LARGE} height={ICON_SIZE.MEDIUM_LARGE} aria-label='카테고리 이름 변경' />
31+
<PencilIcon
32+
width={ICON_SIZE.MEDIUM_LARGE}
33+
height={ICON_SIZE.MEDIUM_LARGE}
34+
aria-label='카테고리 이름 변경'
35+
/>
2536
</S.IconButtonWrapper>
2637
)}
2738
{del && (
2839
<S.IconButtonWrapper onClick={onDeleteClick}>
29-
<TrashcanIcon width={ICON_SIZE.MEDIUM_LARGE} height={ICON_SIZE.MEDIUM_LARGE} aria-label='카테고리 삭제' />
40+
<TrashcanIcon
41+
width={ICON_SIZE.MEDIUM_LARGE}
42+
height={ICON_SIZE.MEDIUM_LARGE}
43+
aria-label='카테고리 삭제'
44+
/>
3045
</S.IconButtonWrapper>
3146
)}
3247
</S.IconButtonContainer>

frontend/src/pages/MemberTemplatePage/components/CategoryEditModal/NewCategoryItem.tsx

+12-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,24 @@ const NewCategoryItem = ({
2929
<>
3030
<CategoryName>
3131
{isEditing ? (
32-
<CategoryNameInput value={name} onChange={onChange} onBlur={onBlur} onKeyDown={onKeyDown} />
32+
<CategoryNameInput
33+
value={name}
34+
onChange={onChange}
35+
onBlur={onBlur}
36+
onKeyDown={onKeyDown}
37+
/>
3338
) : (
3439
<Text.Medium color={theme.color.light.secondary_500} weight='bold'>
3540
{name}
3641
</Text.Medium>
3742
)}
3843
</CategoryName>
39-
<IconButtons edit delete onEditClick={() => onEditClick(id)} onDeleteClick={() => onDeleteClick(id)} />
44+
<IconButtons
45+
edit
46+
delete
47+
onEditClick={() => onEditClick(id)}
48+
onDeleteClick={() => onDeleteClick(id)}
49+
/>
4050
</>
4151
);
4252

0 commit comments

Comments
 (0)