Skip to content

Commit

Permalink
[team-03][FE][쥬&도리] 1주차 첫 PR: 프로젝트 환경설정 및 설계 (#25)
Browse files Browse the repository at this point in the history
* [공통] Issues, PR templates 와 프로젝트 소개 README.md 추가 (#2)

* Docs: 프로젝트 및 팀원 소개(readme.md)

* Chore: Issues, PR templates 추가

ref: #1

Co-authored-by: “Louie-03” <dhdustnr0134@naver.com>

* Docs: 팀원 수정

- 팀원 한 마디 추가

* Chore: 초기개발환경

Chore: CRA 초기구성

Chore: eslint 구성

Chore: prettier 구성

* Style: App.js -> jsx 수정

Co-authored-by: kukim <57086195+ku-kim@users.noreply.github.com>
Co-authored-by: “Louie-03” <dhdustnr0134@naver.com>
  • Loading branch information
3 people committed Apr 20, 2022
1 parent 4f385a1 commit fc57090
Show file tree
Hide file tree
Showing 10 changed files with 27,714 additions and 0 deletions.
3 changes: 3 additions & 0 deletions FE/.eslintrc.json
@@ -0,0 +1,3 @@
{
"extends": ["react-app", "prettier"]
}
23 changes: 23 additions & 0 deletions FE/.gitignore
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
7 changes: 7 additions & 0 deletions FE/.prettierrc
@@ -0,0 +1,7 @@
{
"tabWidth": 2,
"useTabs": true,
"singleQuote": false,
"printWidth": 120,
"trailingComma": "es5"
}

0 comments on commit fc57090

Please sign in to comment.