Skip to content

Commit

Permalink
Merge pull request #73 from boostcamp-2020/develop
Browse files Browse the repository at this point in the history
2주차 배포
  • Loading branch information
rolled-potatoes authored Nov 26, 2020
2 parents e24f563 + 869d269 commit edc9703
Show file tree
Hide file tree
Showing 140 changed files with 4,918 additions and 22,032 deletions.
2 changes: 1 addition & 1 deletion .github/auto_assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ reviewers:
- rolled-potatoes
- yejineee
- pkiop
- dbstrwnekd
- dbstjrwnekd

numberOfReviewers: 0
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ dist
.DS_Store
.env.local
.env.development.local
.env.development
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

.env
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Project16-A-Account-Book
<div>
<img src="https://img.shields.io/badge/React-v17.0.1-blue)"/>
<img src="https://img.shields.io/badge/node-v14.15.1-green"/>
<img src="https://img.shields.io/badge/storybook-v6.0.28-ff69b4"/>
<img src="https://img.shields.io/badge/koa-v2.13.0-aaa"/>
<img src="https://img.shields.io/badge/mongoose-v5.10.15-critical"/>
</div>

## πŸ“Œ μ†Œκ°œ
πŸ’° 개인 λ˜λŠ” 곡용으둜 이용 ν•  수 μžˆλŠ” μžμ‚°κ΄€λ¦¬ μ„œλΉ„μŠ€ μž…λ‹ˆλ‹€.

πŸ“ˆ μž…λ ₯된 데이터λ₯Ό μ‹œμž‘ν™”ν•˜μ—¬ 뢄석 및 νŒŒμ•… ν•  수 μžˆλŠ” κΈ°λŠ₯을 μ œκ³΅ν•©λ‹ˆλ‹€.

## πŸ“Œ νŒ€μ›μ†Œκ°œ

| J128 μœ€μ„μ£Ό | J114 μ–‘μ˜ˆμ§„ | J075 박상신 | J081 λ°•μŠΉν™˜ |
| :--------: | :--------: | :---------: | :---------: |
| <img src="https://ca.slack-edge.com/T019JFET9H7-U019R14MZQA-3fc3f52ba025-512" alt="img" height="150px" width="150px" /> | <img src="https://avatars1.githubusercontent.com/u/43772082?s=400&u=7b56e9b176e2f44faa90309d6b2e2820ea679a1c&v=4" alt="img" height="150px" width="150px" /> | <img src="https://ca.slack-edge.com/T019JFET9H7-U0198M695JT-ebc94d8fd643-512" alt="img" height="150px" width="150px" /> | <img src="https://ca.slack-edge.com/T019JFET9H7-U019L3LK929-3a96d76029a8-512" alt="img" height="150px" width="150px" />
| [dbstjrwnekd](https://github.com/dbstjrwnekd) | [yejineee](https://github.com/yejineee) | [pkiop](https://github.com/pkiop) | [rolled-potatoes](https://github.com/rolled-potatoes) |

## πŸ“Œ 기술 μŠ€νƒ
<center><img src="https://user-images.githubusercontent.com/44409642/99674728-c9ecfc80-2ab9-11eb-8039-06b9ebdc5e38.png"/></center>
20 changes: 19 additions & 1 deletion be/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,24 @@ module.exports = {
ecmaVersion: 12,
sourceType: 'module',
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.ts'],
},
},
},
plugins: ['@typescript-eslint'],
rules: {},
rules: {
'import/no-unresolved': 0,
'no-await-in-loop': 0,
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
ts: 'never',
},
],
},
};
Loading

0 comments on commit edc9703

Please sign in to comment.