-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
33 lines (32 loc) · 1.19 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
module.exports = {
env: {
browser: true,
es2021: true
},
extends: ['plugin:react/recommended', 'standard-with-typescript', 'prettier'], // prettier 충돌방지
overrides: [],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: './tsconfig.json'
},
plugins: ['react'],
rules: {
'react/self-closing-comp': [
'error',
{
component: true,
html: true
}
],
'react/react-in-jsx-scope': 'off', // 추가 jsx파일 내 React 선언 제외
'@typescript-eslint/explicit-function-return-type': 'off', // 추가 리턴타입 jsx 제외
'@typescript-eslint/strict-boolean-expressions': 'off', // truthy, falsy한 값을 엄격하게 체크 제외
'@typescript-eslint/no-misused-promises': 'off', // 추가 Promise return 타입에 void가 예상되는 에러 규칙 제외
'@typescript-eslint/triple-slash-reference': 'off', // 추가 ///<reference /> 삼중 슬래시 지시자 규칙 제외
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'react/display-name': 'off', // 이름없는 함수 eslint체크 제외 (hoc 사용해서)
'react/no-unknown-property': ['error', { ignore: ['css'] }]
}
};