-
Notifications
You must be signed in to change notification settings - Fork 21
/
.eslintrc.js
101 lines (101 loc) · 1.76 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
module.exports = {
parserOptions: {
ecmaVersion: 2017,
},
env: {
browser: true,
es6: true,
node: true,
commonjs: true,
},
plugins: [
'html',
],
// 'extends': 'eslint:recommended',
rules: {
// 들여쓰기 2칸 공백
'indent': [
'error',
2,
// switch-case에서도 들여쓰기를 사용
{
SwitchCase : 1,
}
],
// 작은 따옴표를 사용.
quotes: [
'warn',
'single',
],
// object literal에서 따옴표 안 써도 됨.
'quote-props': [
'error',
'as-needed',
],
// 세미콜론
'semi': [
'error',
'always',
],
// 중괄호 한 줄에
'brace-style': [
'error',
'1tbs',
],
// if/for 등 키워드에 공백
'keyword-spacing': [
'error',
{
before: true,
after: true,
}
],
// typeof나 연산자에 공백
'space-unary-ops': [
'error',
],
'space-infix-ops': [
'error',
],
// () 괄호에 공백 제거
'space-in-parens': [
'error',
],
// function에 공백
'space-before-function-paren': [
'error',
'always',
],
// typesafe한 비교
'eqeqeq': [
'error',
],
'no-undef': [
'error',
],
// 여러줄 object/array엔 쉼표(,)
'comma-dangle': [
'error',
'always-multiline',
],
// 화살표함수(=>)의 괄호사용 여부
'arrow-parens': [
'error',
'as-needed',
],
// 화살표함수 공백
'arrow-spacing': [
'error',
{
before: true,
after: true,
}
],
// 중괄호 일관적으로
'curly': [
'error',
'multi-line',
'consistent',
],
},
};