Skip to content

Commit

Permalink
chore: eslintrc 설정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yan9vvoojin committed May 1, 2023
1 parent f488dab commit 988cfe3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"rules": {
"no-var": "error", // var 금지
"no-multiple-empty-lines": "error", // 여러 줄 공백 금지
"no-console": ["error", { "allow": ["warn", "error", "info"] }], // console.log() 금지
"no-console": ["warn", { "allow": ["warn", "error", "info"] }], // console.log() 경고
"eqeqeq": "error", // 일치 연산자 사용 필수
"dot-notation": "error", // 가능하다면 dot notation 사용
"no-unused-vars": "error", // 사용하지 않는 변수 금지
"no-unused-vars": "warn", // 사용하지 않는 변수 금지
"no-empty": ["error", { "allowEmptyCatch": true }]
},
"ignorePatterns": ["src/components/.keep", "src/pages/.keep"]
Expand Down

0 comments on commit 988cfe3

Please sign in to comment.