Skip to content

Commit

Permalink
Setup : eslint 설정 변경
Browse files Browse the repository at this point in the history
상세:
- client/server workspace에서 eslint no-undef 해제
이유:
- jest는 글로벌로 작동하기 때문에 따로 임포트하여 사용하지 않음

#127 #85
  • Loading branch information
younguna committed Nov 24, 2019
1 parent 0c9d641 commit 06d082b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion client/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"extensions": [".js", ".jsx"]
}
],
"import/prefer-default-export": 0
"import/prefer-default-export": 0,
"no-undef": 0
}
}
3 changes: 2 additions & 1 deletion server/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"linebreak-style": 0,
"no-restricted-globals": 0,
"class-methods-use-this": 0,
"no-plusplus": 0
"no-plusplus": 0,
"no-undef": 0
}
}

0 comments on commit 06d082b

Please sign in to comment.