-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
39 lines (39 loc) · 1.04 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
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"brace_style": "collapse,preserve-inline",
"object_curly_spacing": true,
"preserve_newlines": true,
"remove_trailing_whitespace": true,
"space_in_empty_paren": false,
"space_after_anon_function": false,
"space_before_conditional": true,
"space_in_paren": false,
"unescape_strings": false,
"wrap_line_length": 0,
"multiline_ternary": "never",
"max_preserve_newlines": 10,
"keep_array_indentation": false,
"jsx_brackets": false,
"jslint_happy": false,
"indent_style": "space",
"indent_size": 2,
"indent_level": 0,
"indent_comments": false,
"indent_char": " ",
"indent_chained_methods": true,
"end_with_semicolon": true,
"keep_function_indentation": false,
"end_with_newline": true,
"end_with_comma": false,
"operator_position": "after-newline",
"comma_first": false,
"break_chained_methods": false,
"arrow_parens": "as-needed",
"align_assignments": true
}
}