-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
46 lines (46 loc) · 1.33 KB
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
module.exports = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:@next/next/recommended',
'plugin:prettier/recommended', // Prettier와 ESLint를 통합
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2021,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
settings: {
react: {
version: 'detect', // React 버전을 자동으로 감지
},
},
plugins: [
'@typescript-eslint',
'react',
'react-hooks',
'prettier',
'tailwindcss',
],
rules: {
'prettier/prettier': ['error', { singleQuote: true, endOfLine: 'auto' }],
'react/react-in-jsx-scope': 'off', // Next.js에서 React 자동 임포트를 지원
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/explicit-module-boundary-types': 'off',
'react/prop-types': 'off', // TypeScript를 사용하므로 prop-types 비활성화
'no-console': 'warn',
'tailwindcss/classnames-order': 'warn', // Tailwind CSS 클래스 순서 검사
'no-unused-vars': 'off', // 개발 시 임시 추가
'no-unused-vars': 'off', // 개발 시 임시 추가
},
env: {
browser: true,
es2021: true,
node: true,
},
};