-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
146 lines (146 loc) · 4.39 KB
/
.eslintrc.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
plugins: ['react', '@typescript-eslint', 'react-hooks'],
extends: [
'eslint:recommended',
'airbnb',
'airbnb-typescript',
'plugin:prettier/recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:@typescript-eslint/recommended',
'prettier',
],
overrides: [],
parser: '@typescript-eslint/parser',
parserOptions: {
project: ['./tsconfig.json'],
tsconfigRootDir: __dirname, // 절대 경로로 tsconfig파일 찾도록 함
ecmaVersion: 'latest',
sourceType: 'module',
createDefaultProgram: true, // 이게 있어야 module.exports에 에러 없어짐
},
rules: {
// "off" or 0 - turn the rule off
// "warn" or 1 - turn the rule on as a warning (doesn’t affect exit code)
// "error" or 2 - turn the rule on as an error (exit code is 1 when triggered)
// "no-var": "off",
'no-console': 'warn',
'no-plusplus': 'off',
'no-shadow': 'off',
'vars-on-top': 'off',
'no-underscore-dangle': 'off', // var _foo;
'comma-dangle': 'off',
'func-names': 'off', // setTimeout(function () {}, 0);
'prefer-template': 'off',
'no-nested-ternary': 'off',
'max-classes-per-file': 'off',
'consistent-return': 'off',
'no-restricted-syntax': ['off', 'ForOfStatement'], // disallow specified syntax(ex. WithStatement)
'prefer-arrow-callback': 'error', // Require using arrow functions for callbacks
'require-await': 'error',
'arrow-parens': ['warn', 'always'], // 화살표 함수 매개변수에 괄호 넣도록 강제시킴
'no-param-reassign': ['error', { props: false }],
'no-unused-expressions': [
'error',
{
allowTernary: true, // a || b
allowShortCircuit: true, // a ? b : 0
allowTaggedTemplates: true,
},
],
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
'max-len': [
'error',
{
code: 120,
ignoreComments: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
},
], // prettier의 printWidth 옵션 대신 사용
/* 커스텀 셋팅 추가 */
// 컴포넌트 만들 때 jsx 하단에 style들을 선언하기 위해 추가
'@typescript-eslint/no-use-before-define': 'off',
// prop-type validation 끔 (typescript가 컴파일 타임에 잡아주므로)
'react/prop-types': 'off',
// index랑 조합해서 key로 설정할 땐 유용하므로 디폴트를 error가 아닌 warn로 변경
'react/no-array-index-key': 'warn',
// import react 강제성 끔 (react ver 17부턴 해줄 필요 없음)
'react/react-in-jsx-scope': 'off',
// 프롭스에 스프레드 연산자 사용 가능하게 함
'react/jsx-props-no-spreading': 'off',
'react/require-default-props': 'warn', // 옵셔널 타입 지정 가능하도록 함
'react/self-closing-comp': [
'error',
{
component: true,
html: true,
},
],
// type 은 따로 import 시킴
'@typescript-eslint/consistent-type-imports': [
'error',
{
prefer: 'type-imports',
},
],
'import/order': [
'error',
{
groups: [
'builtin',
'external',
'parent',
'sibling',
'index',
'object',
'type',
],
pathGroups: [
{
pattern: '@/**/**',
group: 'parent',
position: 'before',
},
],
alphabetize: { order: 'asc' },
},
],
'no-restricted-imports': [
'error',
{
patterns: ['../'],
},
],
// arrow function으로 컴포넌트 정의하도록 강제
'react/function-component-definition': [
2,
{ namedComponents: 'arrow-function' },
],
'react-hooks/exhaustive-deps': 'warn', // 디펜던시 빠진 것들 모두 추가하도록 함
// '@typescript-eslint/explicit-function-return-type': 'warn',
// default export 선호 끔
'import/prefer-default-export': 'off',
'@typescript-eslint/ban-types': [
'error',
{
types: {
// un-ban a type that's banned by default
'{}': false,
},
},
],
// 윈도우에서 delete CR 오류뜨는 것을 막기 위함
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
},
};