ESLint
Last updated
Was this helpful?
초보자도 고수처럼 코딩할 수 있다.
create-react-app 으로 만든 project 라고 가정.
yarn add eslint-config-airbnb
{
"env": {
"browser": true,
"es6": true,
"jest": true
},
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"plugins": [
"react"
],
"rules": {
"strict": "error"
}
}
제가 사용중인 설정입니다.
:D
Last updated
Was this helpful?
Was this helpful?