-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc.js
28 lines (28 loc) · 1006 Bytes
/
.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
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'react',
'react-hooks',
'prettier', // eslint-plugin-prettier: ESLint 규칙에 Prettier의 규칙을 적용
],
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended', // eslint-config-prettier: Prettier의 설정과 충돌하는 ESLint의 규칙을 자동으로 비활성화
],
rules: {
'@typescript-eslint/no-var-requires': 'off', // require 감지 off
'@typescript-eslint/explicit-function-return-type': 'off', // 함수 반환 타입 지정
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off', // any 타입사용을 방지
'prettier/prettier': 'error', // Prettier와 충돌하는 규칙을 에러 발생
'react/react-in-jsx-scope': 'off',
},
};