Closed piggmme closed 3 months ago
설치
pnpm i -D @stylistic/eslint-plugin
eslintrc.cjs 수정
module.exports = {
// ....
plugins: [
'react-refresh',
'@stylistic',
],
rules: {
// 여기에 룰 추가해서 하나씩 설정해야함...
'react-refresh/only-export-components': 'off',
'@stylistic/indent': ['error', 2],
'@stylistic/quotes': ['error', 'single'],
'@stylistic/semi': ['error', 'never'],
'@stylistic/arrow-spacing': ['error', 'never'],
},
}
https://eslint.style/