fix. 린트 설정 수정
This commit is contained in:
@@ -13,12 +13,6 @@ export default createConfigForNuxt({
|
||||
rules: {
|
||||
// 포맷팅 관련 규칙 비활성화 (Prettier가 담당)
|
||||
'prettier/prettier': 'off',
|
||||
'@typescript-eslint/indent': 'off',
|
||||
'@typescript-eslint/quotes': 'off',
|
||||
'@typescript-eslint/semi': 'off',
|
||||
'@typescript-eslint/comma-dangle': 'off',
|
||||
'@typescript-eslint/brace-style': 'off',
|
||||
'@typescript-eslint/space-before-function-paren': 'off',
|
||||
|
||||
// 타입 관련 규칙 완화
|
||||
'@typescript-eslint/no-explicit-any': 'off',
|
||||
@@ -42,7 +36,7 @@ export default createConfigForNuxt({
|
||||
// 일반 규칙 (품질/버그 탐지)
|
||||
'no-console': 'warn',
|
||||
'no-debugger': 'error',
|
||||
'no-unused-vars': 'off', // TypeScript 버전 사용
|
||||
'no-unused-vars': 'off',
|
||||
'prefer-const': 'warn',
|
||||
'no-var': 'error',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user