ESLint configurations based on huray style guide
yarn add --dev eslint-config-huray
.eslintrc.js
module.exports = {
extends: [
'huray'
'huray/prettier'
]
}
module.exports = {
extends: [
'huray',
'huray/react',
'huray/prettier'
],
}
module.exports = {
extends: [
'huray',
'huray/typescript',
'huray/react',
'huray/prettier'
]
}
"include": [
".eslintrc.js",
"src"
]
ESLint의 Prettier를 사용하는 방식으로 별도의 Prettier 설정 파일은 생성하지 않아도 됩니다.
만약 파일 저장 시 자동 포맷이 적용되지 않는다면, 기본 포맷터를 ESLint로 설정해야 합니다.