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

Feature/issue 19 #28

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
31 changes: 23 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
package-lock.json
node_modules/**/package.json
package.json
project/
node_modules/
node_modules/**/*.json
*.json
body-parser/
# 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*
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# COLLUSIC

#### 온라인 프로듀싱 협업 프로젝트
#### 온라인 프로듀싱 협업 프로젝트!

프로듀싱하는데 협업을 하고 싶다?

Expand All @@ -10,8 +10,6 @@

"작곡가"들을 위한 온라인 프로듀싱 협업 서비스🎤🎶🎸🎹



#### 프로젝트 규칙

Collusic 프로젝트를 처음 접하시는 같이 개발하는 개발자에게 전합니다. 이 규칙은 서로의 코드를 더 잘 이해할 수 있게 정해진 규칙입니다. 때문에 언제든지 모든 개발자가 동의한다면 변경이 가능합니다. 규칙을 준수하여 서로의 발전을 도와줍시다.
Expand All @@ -28,8 +26,6 @@ Collusic 프로젝트를 처음 접하시는 같이 개발하는 개발자에게
8. 컴포넌트를 제외한 함수의 이름은 동작의 의미가 담겨 있어야 합니다.
9. 컴포넌트 코드가 들어간 파일의 확장자는 jsx를 사용합니다.



##### 코딩컨벤션

else 사용을 최대한 자제합니다.
Expand All @@ -48,8 +44,6 @@ else 사용을 최대한 자제합니다.

게터/세터 속성 사용을 금지합니다.



규칙1, 2, 3, 5, 6, 9

https://developerfarm.wordpress.com/2012/02/03/object_calisthenics_summary/
Expand Down
8 changes: 8 additions & 0 deletions client/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"baseUrl": "src"
},
"includes": [
"src"
]
}
Loading