-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.editorconfig
More file actions
42 lines (35 loc) · 1.03 KB
/
.editorconfig
File metadata and controls
42 lines (35 loc) · 1.03 KB
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
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
# Default settings:
# A newline ending every file
# Use 4 spaces as indentation
[*]
insert_final_newline = true
indent_style = space
indent_size = 4
end_of_line = lf
[*.cs]
indent_size = 4
charset = utf-8
# Verify settings
[*.{received,verified}.{json,txt,xml}]
end_of_line = lf
indent_size = unset
indent_style = unset
insert_final_newline = false
tab_width = unset
trim_trailing_whitespace = false
[*.{fs, fsi, fsx, config}]
# https://fsprojects.github.io/fantomas/docs/end-users/Configuration.html
charset = utf-8
trim_trailing_whitespace = true
max_line_length = 100
fsharp_multiline_block_brackets_on_same_column= true
fsharp_experimental_stroustrup_style = true
fsharp_keep_max_number_of_blank_lines = 2
fsharp_max_array_or_list_number_of_items =1
fsharp_max_array_or_list_width = 100
fsharp_array_or_list_multiline_formatter = character_width
fsharp_max_infix_operator_expression = 10
fsharp_multi_line_lambda_closing_newline = true