-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
82 lines (74 loc) · 2.1 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
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'plugin:react/recommended',
'plugin:prettier/recommended',
'plugin:@tanstack/eslint-plugin-query/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh', 'unused-imports', 'simple-import-sort'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
curly: 2, //0: off, 1: warn, 2: error
'no-console': ['error'], //콘솔로그 사용시 에러...,
'react/react-in-jsx-scope': 'off', //react 17버전이후로 import react안해도되는데 오류발생하는것 제거
/* simple-sort */
'simple-import-sort/imports': [
'error',
{
groups: [['^\\u0000', '^@?\\w', '^[^.]', '^\\.']],
},
],
'simple-import-sort/exports': 'error',
/* naming convention */
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'variable',
format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
},
{
selector: 'variable',
types: ['boolean'],
format: ['PascalCase'],
prefix: ['is', 'should', 'has', 'can', 'did', 'will'],
},
{
selector: 'variable',
modifiers: ['destructured'],
format: null,
},
{
selector: 'function',
format: ['camelCase', 'PascalCase'],
},
{
selector: 'typeAlias',
format: ['PascalCase'],
suffix: ['Type'],
},
],
'react/jsx-key': 'error',
'no-unreachable': 'warn',
/* ts enum error */
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'error',
/* unused-imports */
'unused-imports/no-unused-imports': 'error',
},
// typescript-eslint/naming-convention 사용할때 파서 옵션
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: true,
tsconfigRootDir: __dirname,
},
};