Skip to content

Commit 1c88d34

Browse files
committed
refactor: eslint flat config
1 parent 3bc4084 commit 1c88d34

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+305
-171
lines changed

.eslintrc.json

-39
This file was deleted.

bun.lockb

14.5 KB
Binary file not shown.

eslint.config.mjs

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
import pluginJs from '@eslint/js';
2+
import tseslint from '@typescript-eslint/eslint-plugin';
3+
import parser from '@typescript-eslint/parser';
4+
import pluginImport from 'eslint-plugin-import';
5+
import pluginJsxA11y from 'eslint-plugin-jsx-a11y';
6+
import pluginReact from 'eslint-plugin-react';
7+
import pluginReactHooks from 'eslint-plugin-react-hooks';
8+
import pluginSimpleImportSort from 'eslint-plugin-simple-import-sort';
9+
import globals from 'globals';
10+
11+
const commonRules = {
12+
...pluginJs.configs.recommended.rules,
13+
...tseslint.configs.recommended.rules,
14+
...pluginReact.configs.recommended.rules,
15+
...pluginImport.configs.rules,
16+
...pluginReactHooks.configs.recommended.rules,
17+
...pluginJsxA11y.configs.recommended.rules,
18+
'react/jsx-uses-react': 'off',
19+
'react/react-in-jsx-scope': 'off',
20+
'import/no-unresolved': 'off',
21+
'react/prop-types': 'off',
22+
'import/no-named-as-default': 'off',
23+
'import/no-named-as-default-member': 'off',
24+
'jsx-a11y/label-has-associated-control': 'off',
25+
eqeqeq: 'error',
26+
'no-undef': 'off',
27+
'no-unused-vars': 'off',
28+
'simple-import-sort/imports': 'error',
29+
'simple-import-sort/exports': 'error',
30+
};
31+
32+
export default [
33+
{
34+
files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'],
35+
languageOptions: {
36+
globals: globals.browser,
37+
parser: parser,
38+
parserOptions: {
39+
ecmaVersion: 2021,
40+
sourceType: 'module',
41+
},
42+
},
43+
settings: {
44+
react: {
45+
version: 'detect',
46+
},
47+
},
48+
plugins: {
49+
'@typescript-eslint': tseslint,
50+
react: pluginReact,
51+
'react-hooks': pluginReactHooks,
52+
import: pluginImport,
53+
'jsx-a11y': pluginJsxA11y,
54+
'simple-import-sort': pluginSimpleImportSort,
55+
},
56+
rules: {
57+
...commonRules,
58+
},
59+
},
60+
//! ts override (지우면 ts와 충돌)
61+
{
62+
files: ['**/*.{ts,tsx}'],
63+
languageOptions: {
64+
parser: parser,
65+
parserOptions: {
66+
ecmaVersion: 2021,
67+
sourceType: 'module',
68+
project: ['./tsconfig.json'],
69+
},
70+
},
71+
rules: {
72+
...commonRules,
73+
//TODO: 추후 제거 예정 (변경 시 현재 동작에 영향이 가는 것을 고려해야함)
74+
'@typescript-eslint/no-explicit-any': 'off',
75+
'@typescript-eslint/consistent-type-imports': [
76+
'error',
77+
{
78+
prefer: 'type-imports',
79+
disallowTypeAnnotations: false,
80+
},
81+
],
82+
'padding-line-between-statements': [
83+
'error',
84+
{ blankLine: 'always', prev: '*', next: 'return' },
85+
],
86+
},
87+
},
88+
];

package.json

+11-5
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,26 @@
2626
"compile": "tsc"
2727
},
2828
"devDependencies": {
29-
"@types/node": "^18.19.47",
30-
"@types/react": "^18.3.4",
29+
"@eslint/js": "^9.9.1",
30+
"@types/node": "^22.5.1",
31+
"@types/react": "^18.3.5",
3132
"@types/react-dom": "^18.3.0",
3233
"@types/react-star-ratings": "^2.3.3",
34+
"@typescript-eslint/eslint-plugin": "^8.3.0",
35+
"@typescript-eslint/parser": "^8.3.0",
3336
"@vitejs/plugin-react": "^4.3.1",
34-
"eslint": "^8.57.0",
35-
"eslint-config-prettier": "^8.10.0",
37+
"eslint": "^9.9.1",
38+
"eslint-config-prettier": "^9.1.0",
3639
"eslint-plugin-import": "^2.29.1",
3740
"eslint-plugin-jsx-a11y": "^6.9.0",
3841
"eslint-plugin-prettier": "^5.2.1",
3942
"eslint-plugin-react": "^7.35.0",
4043
"eslint-plugin-react-hooks": "^4.6.2",
41-
"prettier": "^2.8.8",
44+
"eslint-plugin-simple-import-sort": "^12.1.1",
45+
"globals": "^15.9.0",
46+
"prettier": "^3.3.3",
4247
"typescript": "^4.9.5",
48+
"typescript-eslint": "^8.3.0",
4349
"vite": "^5.4.2"
4450
}
4551
}

src/App.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { BrowserRouter, Navigate, Route, Routes } from 'react-router-dom';
21
import { Footer, Nav, ScrollButton } from 'components';
2+
import RouteChangeTracker from 'components/RouteChangeTracker';
33
import {
44
BadGateway,
55
BanReason,
@@ -20,7 +20,7 @@ import {
2020
Search,
2121
SignUp,
2222
} from 'pages';
23-
import RouteChangeTracker from 'components/RouteChangeTracker';
23+
import { BrowserRouter, Navigate, Route, Routes } from 'react-router-dom';
2424

2525
const App = () => {
2626
return (

src/api/ApiController.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import axios from 'axios';
33
import jwtDecode, { type JwtPayload } from 'jwt-decode';
44
import { useRecoilState } from 'recoil';
55
import { isLoginStorage } from 'utils/loginStorage';
6+
67
import { logout, refresh } from './etc';
78

89
const PROXY_URL = window.location.hostname === 'localhost' ? '/api' : '/proxy';
@@ -19,6 +20,7 @@ const JwtInterceptors = () => {
1920
if (!token) return false;
2021
const tokenInfo = jwtDecode<JwtPayload>(token);
2122
if (tokenInfo.exp && tokenInfo.exp <= Date.now() / 1000) return false;
23+
2224
return true;
2325
};
2426
//토큰 리프레시
@@ -29,6 +31,7 @@ const JwtInterceptors = () => {
2931
throw new Error(`Response status is ${res?.status}`);
3032
} else {
3133
setToken(res.data.AccessToken);
34+
3235
return res;
3336
}
3437
} catch (error) {
@@ -57,8 +60,9 @@ const JwtInterceptors = () => {
5760
},
5861
function (error) {
5962
alert('해당 요청이 정상적으로 이루어지지 않았어요.\n 다시 시도해주세요.');
63+
6064
return Promise.reject(error);
61-
}
65+
},
6266
);
6367

6468
instance.interceptors.response.use(
@@ -69,9 +73,11 @@ const JwtInterceptors = () => {
6973
if (error.response.status === 502) {
7074
location.href = '/502';
7175
}
76+
7277
return Promise.reject(error);
73-
}
78+
},
7479
);
80+
7581
return { instance };
7682
};
7783

src/api/Auth.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useNavigate } from 'react-router-dom';
22
import { useSetRecoilState } from 'recoil';
3-
import { AxiosResponseSuccess } from 'types/common';
4-
import {
3+
import type { AxiosResponseSuccess } from 'types/common';
4+
import type {
55
FindPassword,
66
ResetPassword,
77
ResponseUserCheckID,
@@ -12,6 +12,7 @@ import {
1212
UserLoginResponse,
1313
} from 'types/user';
1414
import { removeStorage, setStorage } from 'utils/loginStorage';
15+
1516
import { tokenState } from '../app/recoilStore';
1617
import JwtInterceptors from './ApiController';
1718

src/api/Lecture.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import { AxiosError } from 'axios';
2-
import { ExamPostsResponse } from 'types/exam';
1+
import type { AxiosError } from 'axios';
2+
import type { Review } from 'types/evaluate';
3+
import type { ExamPostsResponse } from 'types/exam';
34
import type { LectureDetailItem, MainLecture } from 'types/lecture';
5+
46
import JwtInterceptors from './ApiController';
5-
import { Review } from 'types/evaluate';
67

78
const Lecture = () => {
89
const { instance } = JwtInterceptors();
@@ -13,6 +14,7 @@ const Lecture = () => {
1314
const data: MainLecture = await instance.get(
1415
`/lecture/all/?option=${lecture}&page=${page}&majorType=${majorType}`
1516
);
17+
1618
return data;
1719
} catch (error) {
1820
const axiosError = error as AxiosError;
@@ -60,6 +62,7 @@ const Lecture = () => {
6062
const { data } = await instance.get<Review[]>(
6163
`/evaluate-posts/?lectureId=${selectId}&page=${pageParam}`
6264
);
65+
6366
return {
6467
data,
6568
isLast: data.length < 10,
@@ -77,6 +80,7 @@ const Lecture = () => {
7780
const data: ExamPostsResponse = await instance.get(
7881
`/exam-posts/?lectureId=${selectId}&page=${pageParam}`
7982
);
83+
8084
return {
8185
data,
8286
isLast: data.data.length < 10,

src/api/Major.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
import { AxiosError } from 'axios';
1+
import type { AxiosError } from 'axios';
2+
import type { VersionCheckSuccess } from 'types/common';
3+
24
import JwtInterceptors from './ApiController';
3-
import { VersionCheckSuccess } from 'types/common';
45

56
const Major = () => {
67
const { instance } = JwtInterceptors();
@@ -9,6 +10,7 @@ const Major = () => {
910
const version = async () => {
1011
try {
1112
const res: VersionCheckSuccess = await instance.get('/suwiki/version');
13+
1214
return res;
1315
} catch (error) {
1416
const axiosError = error as AxiosError;
@@ -20,6 +22,7 @@ const Major = () => {
2022
const type = async () => {
2123
try {
2224
const res = await instance.get('/suwiki/majorType');
25+
2326
return res;
2427
} catch (error) {
2528
const axiosError = error as AxiosError;
@@ -31,6 +34,7 @@ const Major = () => {
3134
const searchFavorite = async () => {
3235
try {
3336
const res = await instance.get('/user/favorite-major');
37+
3438
return res;
3539
} catch (error) {
3640
const axiosError = error as AxiosError;
@@ -42,6 +46,7 @@ const Major = () => {
4246
const favoriting = async (majorType: string) => {
4347
try {
4448
const res = await instance.post('/user/favorite-major', { majorType });
49+
4550
return res;
4651
} catch (error) {
4752
const axiosError = error as AxiosError;

src/api/Notice.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1+
import type { AxiosError } from 'axios';
2+
3+
import type { NoticeDetail,NoticeItem } from '../types/notice';
14
import JwtInterceptors from './ApiController';
2-
import type { NoticeItem, NoticeDetail } from '../types/notice';
3-
import { AxiosError } from 'axios';
45

56
const Notices = () => {
67
const { instance } = JwtInterceptors();
78
//공지사항 조회 api
89
const list = async (pageParam = 1) => {
910
try {
1011
const res = await instance.get<NoticeItem[]>(`/notice/all?page=${pageParam}`);
12+
1113
return {
1214
data: res,
1315
nextPage: pageParam + 1,
@@ -23,12 +25,14 @@ const Notices = () => {
2325
const detail = async (notice: string) => {
2426
try {
2527
const res = await instance.get<NoticeDetail>(`/notice/?noticeId=${notice}`);
28+
2629
return res;
2730
} catch (error) {
2831
const axiosError = error as AxiosError;
2932
alert(axiosError.message);
3033
}
3134
};
35+
3236
return { list, detail };
3337
};
3438

0 commit comments

Comments
 (0)