-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
82 lines (82 loc) · 1.66 KB
/
.eslintrc.json
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
{
"env": {
"node" : true,
"mocha" : true,
"es6" : true,
"browser" : true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 8
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single",
"avoid-escape"
],
"semi": [
"error",
"always"
],
"camelcase" : ["warn", {
"properties" : "always"
}],
"key-spacing": ["error", {
"singleLine" : {
"beforeColon": true,
"afterColon": true
},
"multiLine" : {
"beforeColon": true,
"afterColon" : true,
"align" : "colon"
}
}],
"eqeqeq" : "error",
"block-scoped-var": "error",
"complexity" : "warn",
"curly": "error",
"default-case": "error",
"dot-location": ["error", "property"],
"guard-for-in": "error",
"no-eval": "error",
"block-spacing": "error",
"comma-spacing": ["error", {
"before" : false,
"after" : true
}],
"id-length": ["error", {
"min": 2,
//"max": 16, // 最大文字列長なし。
"properties": "never",
"exceptions": [] //除外変数名
}],
"space-before-function-paren": [
"error",
"never"
],
"space-before-blocks": "error",
"prefer-const": "error",
"no-var": "error",
"arrow-spacing": "error",
"no-warning-comments": ["warn", {
"terms": [
"todo",
"fixme",
"hack"
],
"location": "anywhere"
}],
"no-console": "off"
}
}