Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev/miyu #17

Merged
merged 21 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
61e73b1
FE: SVG 크기 조절 실패.. 살려줘
Minkyu01 Jan 27, 2024
0780ba4
fix : fix static file storage.
LuticaCANARD Jan 27, 2024
51b42d2
FE: 기본틀 만들기
Minkyu01 Jan 29, 2024
db8b837
FE: category, options 가운데 정렬
Minkyu01 Jan 30, 2024
68cd6fb
Merge branch 'dev/miyu' of https://github.com/KNUT-webstudygroup/pick…
LuticaCANARD Jan 31, 2024
7787235
fix position
Minkyu01 Jan 31, 2024
f090c7b
Merge branch 'dev/miyu' of https://github.com/KNUT-webstudygroup/pick…
Minkyu01 Jan 31, 2024
3b277fa
FE : 반응형 조금, category 중복 선택
Minkyu01 Feb 5, 2024
c0f5c4b
docs : add answer for useState
LuticaCANARD Feb 5, 2024
ae42ce6
Merge branch 'main' of https://github.com/KNUT-webstudygroup/pick-of-…
Minkyu01 Feb 21, 2024
5ec3001
FE : options 세팅 및 recoil 설정하기, map 페이지에 카테고리 띄우기
Minkyu01 Feb 21, 2024
f3ee3b5
Merge branch 'main' of https://github.com/KNUT-webstudygroup/pick-of-…
Minkyu01 Feb 28, 2024
7cd493e
MAP 디자인 변경지점
Minkyu01 Mar 5, 2024
3257f6b
[FE] first 버전
Minkyu01 Mar 6, 2024
3466ea0
Merge branch 'main' of https://github.com/KNUT-webstudygroup/pick-of-…
Minkyu01 Mar 6, 2024
4f3a7f7
add : add eslint to pr
LuticaCANARD Mar 6, 2024
44ef3ba
revert eslint
LuticaCANARD Mar 6, 2024
1b07d41
🎨 refactor : run `npx eslint`
LuticaCANARD Mar 6, 2024
0e60cb5
fix : delete not needed script
LuticaCANARD Mar 6, 2024
0a25cd9
fix : Eslint 준수
LuticaCANARD Mar 6, 2024
7cafc51
fix : Key의 고유성 문제 해결및 기타 eslint 규격 미준수 컴포넌트 파악
LuticaCANARD Mar 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ module.exports = {
"consistent-return" : "off",
"react/no-unescaped-entities": "off",
"@next/next/no-page-custom-font": "off", // 빌드상 문제.
"@typescript-eslint/no-use-before-define" : "off" // 컴포넌트를 먼저 보는게 더 가독성이 좋다는 의견이 있어서 생략.

"@typescript-eslint/no-use-before-define" : "off", // 컴포넌트를 먼저 보는게 더 가독성이 좋다는 의견이 있어서 생략.
'react/function-component-definition':[2, {namedcomponents:'arrow-function'}], // 이미 너무 많은 침범이 일어남.
'react/require-default-props' : "off", // 함수형 정의에서 디폴트값을 가지게 하여도 괜찮음.
},
parserOptions: {
project: "./tsconfig.json",
Expand Down
10 changes: 5 additions & 5 deletions jest.config.cjs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
// [...]
preset: 'ts-jest/presets/default-esm', // or other ESM presets
preset: "ts-jest/presets/default-esm", // or other ESM presets
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.js$': '$1',
"^(\\.{1,2}/.*)\\.js$": "$1",
},
transform: {
// '^.+\\.[tj]sx?$' to process js/ts with `ts-jest`
// '^.+\\.m?[tj]sx?$' to process js/ts/mjs/mts with `ts-jest`
'^.+\\.tsx?$': [
'ts-jest',
"^.+\\.tsx?$": [
"ts-jest",
{
useESM: true,
},
],
},
}
};
9 changes: 8 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const nextConfig = {
//output: 'export', // Outputs a Single-Page Application (SPA).
//distDir: './dist', // Changes the build output directory to `./dist/`.
basePath: process.env.NEXT_PUBLIC_BASE_PATH, // Sets the base path to `/some-base-path`.
//basePath: process.env.NEXT_PUBLIC_BASE_PATH, // Sets the base path to `/some-base-path`.
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
Expand All @@ -15,6 +15,13 @@ const nextConfig = {
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
experimental: {
turbo: {
loaders: {
'.svg': ['@svgr/webpack']
}
}
}
}

export default nextConfig
Loading