-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
38 lines (38 loc) · 1.44 KB
/
settings.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
{
"cs50_default": {
"newlines_before_curly_brackets": true,
"spaces_before_parenthesis": false,
"spaces_before_square_brackets": false,
"spaces_between_function_parameters": true,
"spaces_around_equals": true,
"spaces_around_comparisons": true,
"spaces_after_ampersands": false,
"spaces_in_include_statements": true,
"spaces_around_operations": true,
"spaces_before_double_operators": false,
"spaces_after_*'s": false,
"spaces_before_*'s": true,
"spaces_after_control_statements": true,
"spaces_around_logical_operators": true,
"indentation_spaces": 4,
"lines_between_functions": 2
},
"inverted": {
"newlines_before_curly_brackets": false,
"spaces_before_parenthesis": true,
"spaces_before_square_brackets": true,
"spaces_between_function_parameters": false,
"spaces_around_equals": false,
"spaces_around_comparisons": false,
"spaces_after_ampersands": true,
"spaces_in_include_statements": false,
"spaces_around_operations": false,
"spaces_before_double_operators": true,
"spaces_after_*'s": true,
"spaces_before_*'s": false,
"spaces_after_control_statements": false,
"spaces_around_logical_operators": false,
"indentation_spaces": 2,
"lines_between_functions": 1
}
}