-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.cjs
91 lines (90 loc) · 3.05 KB
/
.eslintrc.cjs
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
module.exports = {
root: true,
env: {
browser: true,
es2020: true,
node: true, // Node.js 환경의 전역 변수 등록
},
extends: [
'eslint:recommended',
'plugin:@tanstack/eslint-plugin-query/recommended',
'plugin:react/jsx-runtime',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:react-hooks/recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh', '@typescript-eslint'],
settings: {
react: { version: 'detect' },
'import/resolver': { typescript: true, node: true },
},
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true }, // 상수 내보내기 허용
],
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
// Prettier 포맷 관련 내용은 'warn' 으로 취급(ESLint/Prettier 충돌 방지) ▼
// { endOfLine: 'auto' } 엔드라인 시퀀스 자동 변경 ▼
'prettier/prettier': ['warn', { endOfLine: 'auto' }],
'no-param-reassign': ['error', { props: false }],
'react/react-in-jsx-scope': 'off',
'prefer-const': 'warn',
'no-plusplus': 'off',
'vars-on-top': 'off',
'no-underscore-dangle': 'off', // var _foo;
'comma-dangle': 'off',
'func-names': 'off', // setTimeout(function () {}, 0);
'prefer-arrow-callback': 'off', // setTimeout(function () {}, 0);
'prefer-template': 'off',
'no-nested-ternary': 'off',
'max-classes-per-file': 'off',
'no-restricted-syntax': ['off', 'ForOfStatement'],
'consistent-return': 'warn',
'react/prop-types': 'off',
'no-unused-expressions': 'warn',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_', // _로 시작하는 인자 무시
varsIgnorePattern: '^_', // _로 시작하는 변수 무시
},
],
/** import 정렬 관련 설정 */
'import/no-unresolved': 'error',
'import/order': [
'warn',
{
// 그룹 순서 지정
groups: [
'builtin', // Built-in imports go first
'external', // External imports
'internal', // Absolute imports
['parent', 'sibling'], // Relative imports from siblings and parents can mix
'index', // index imports
'object',
'type',
],
'newlines-between': 'always',
// 패턴으로 세부적인 순서 지정
pathGroups: [
{
pattern: '{react,react-dom/*}',
group: 'external',
position: 'before',
},
],
// 리액트 패키지는 external 그룹에서 알파벳 순이 아닌 상단에 위치시키기 위해 예외 처리
pathGroupsExcludedImportTypes: ['react'],
alphabetize: { order: 'asc', caseInsensitive: true },
},
],
},
};