-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
44 lines (44 loc) · 1.05 KB
/
.eslintrc
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
{
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"env": {
"browser": true,
"es6": true,
"node": true,
"commonjs": true
},
// 서드 파티 플러그인들 (eslint-plugin- 생략 가능)
"plugins": [
"node",
"prettier"
],
// 추가한 플러그인에서 적용시킬 규칙을 설정함
"extends": [
"eslint:recommended",
"prettier"
],
// 원하는 lint 규칙 정하기
"rules": {
"prettier/prettier": ["error", {
"endOfLine": "auto"
}],
"block-scoped-var": "error",
"eqeqeq": "error",
"no-var": "error",
"prefer-const": "error",
"eol-last": "error",
"prefer-arrow-callback": "error",
"no-trailing-spaces": "error",
"quotes": [
"warn",
"single",
{
"avoidEscape": true
}
]
}
}