Skip to content

Commit

Permalink
Merge pull request #38 from cookies-yam/feat/signInPage
Browse files Browse the repository at this point in the history
[feat] 회원가입/로그인/마이페이지
  • Loading branch information
doradora523 authored Jun 30, 2023
2 parents 163ab3e + 5107573 commit 2da672c
Show file tree
Hide file tree
Showing 97 changed files with 5,139 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"rules": {
"no-var": "error", // var 금지
"no-multiple-empty-lines": "error", // 여러 줄 공백 금지
"no-console": ["error", { "allow": ["warn", "error", "info"] }], // console.log() 금지
"eqeqeq": "error", // 일치 연산자 사용 필수
"dot-notation": "error", // 가능하다면 dot notation 사용
"no-unused-vars": "error" // 사용하지 않는 변수 금지
"dot-notation": "error" // 가능하다면 dot notation 사용
}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

.eslintcache
.eslintcache
.env
3 changes: 1 addition & 2 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
module.exports = {
singleQuote: true,
bracketSpacing: true,
bracketSameLine: true,
arrowParens: 'avoid',
printWidth: 120,
tabWidth: 2,
trailingComma: 'all',
};
Loading

0 comments on commit 2da672c

Please sign in to comment.