forked from lazyflog/MayWeather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
27 lines (27 loc) · 1014 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
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'plugin:react/recommended', // 리액트 추천 룰셋
'plugin:@typescript-eslint/recommended', // 타입스크립트 추천 룰셋
// eslint의 typescript 포매팅 기능을 제거(eslint-config-prettier)
'prettier/@typescript-eslint',
// eslint의 포매팅 기능을 prettier로 사용함. 항상 마지막에 세팅 되어야 함.
'plugin:prettier/recommended', (eslint-plugin-prettier)
],
parserOptions: {
ecmaVersion: 2018, // 최신 문법 지원
sourceType: 'module', // 모듈 시스템 사용시
ecmaFeatures: {
jsx: true, // 리액트의 JSX 파싱을 위해서
},
},
rules: {
// extends에서 적용한 룰셋을 덮어씌울 수 있습니다.
// "@typescript-eslint/explicit-function-return-type": "off",
},
settings: {
react: {
version: 'detect', // eslint-plugin-react가 자동 리액트버전탐지
},
},
};