forked from mixi-inc/JavaScriptTraining
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
18 lines (15 loc) · 514 Bytes
/
.eslintrc
File metadata and controls
18 lines (15 loc) · 514 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"env": {
"node": true
},
"rules": {
"//": "single quote に統一",
"quotes": [2, "single", "avoid-escape"],
"//": "関数宣言文以外は hoisting 避けのため禁止",
"no-use-before-define": [2, "nofunc"],
"//": "この形式のキャストはくっついていないと読みづらい",
"space-infix-ops": [2, { "int32Hint": false }],
"//": "ガード節の読みやすさを重視して、一行の場合のみ許可する",
"curly": [2, "multi-line"]
}
}