-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: 환경 설정 #2 * chore: chakra ui 설치 #2 * chore: chakra 세팅 #2 * chore: Jotai 세팅 #2 * chore: .gitignore에 .env 추가 #2 * chore: src 폴더 사용으로 변경 #2 * chore: vscode 환경 설정 #2 * chore: next output standalone 으로 설정 - 도커 배포시 이미지 크기를 줄이기 위해 설정 - #2 * chore: prettier 규칙 설정 #2 * chore: pr template 세팅 #2 * chore: jotai provider 제거 #2 * chore: chakra ui 폴더 세팅 #2 * chore: eslint 설정 #2 --------- Co-authored-by: gimdogyun <[email protected]> Co-authored-by: pipisebastian <[email protected]>
- Loading branch information
1 parent
5686dfa
commit 5751873
Showing
21 changed files
with
6,246 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint", "chakra-ui"], | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"plugin:@typescript-eslint/recommended", | ||
"airbnb", | ||
"airbnb/hooks", | ||
"airbnb-typescript", | ||
"plugin:prettier/recommended", | ||
"plugin:import/typescript", | ||
"plugin:import/recommended" | ||
], | ||
"parserOptions": { | ||
"project": "./tsconfig.json" | ||
}, | ||
"rules": { | ||
"react/react-in-jsx-scope": "off", | ||
"chakra-ui/props-order": "warn", | ||
"chakra-ui/props-shorthand": "warn", | ||
"chakra-ui/require-specific-component": "warn", | ||
"import/extensions": "off", | ||
"react/function-component-definition": [ | ||
"error", | ||
{ | ||
"namedComponents": ["arrow-function"] | ||
} | ||
], | ||
"import/order": [ | ||
"error", | ||
{ | ||
"groups": ["builtin", "external", "internal", ["sibling", "parent", "index"], "type"], | ||
"pathGroupsExcludedImportTypes": [], | ||
"newlines-between": "always", | ||
"alphabetize": { | ||
"order": "asc", | ||
"caseInsensitive": true | ||
} | ||
} | ||
] | ||
}, | ||
"settings": { | ||
"import/resolver": { | ||
"node": {}, | ||
"typescript": { | ||
"directory": "./src" | ||
} | ||
}, | ||
"import/parsers": { "@typescript-eslint/parser": [".ts", ".tsx"] } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### 관련 이슈 | ||
|
||
- | ||
|
||
### 작업 요약 | ||
|
||
- | ||
|
||
### 작업 상세 설명 | ||
|
||
- | ||
|
||
### 리뷰 요구 사항 | ||
|
||
- | ||
|
||
### 미리 보기 | ||
|
||
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env* | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"singleQuote": true, | ||
"semi": true, | ||
"useTabs": false, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"printWidth": 120, | ||
"arrowParens": "always" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
experimental: { | ||
swcPlugins: [["@swc-jotai/react-refresh", {}]], | ||
}, | ||
output: "standalone", | ||
}; | ||
|
||
module.exports = nextConfig; |
Oops, something went wrong.