diff --git a/eslint.config.js b/eslint.config.js index ea5e3e0..c53ad5e 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -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', },