32 lines
595 B
INI
32 lines
595 B
INI
root = true
|
|
|
|
# All files
|
|
[*]
|
|
indent_style = space
|
|
|
|
# Xml files
|
|
[*.xml]
|
|
indent_size = 2
|
|
|
|
[*.fs]
|
|
fsharp_space_before_uppercase_invocation = true
|
|
|
|
# Write a comment by starting the line with a '#'
|
|
[*.{fs,fsx,fsi}]
|
|
fsharp_bar_before_discriminated_union_declaration = true
|
|
max_line_length = 120
|
|
fsharp_array_or_list_multiline_formatter = number_of_items
|
|
fsharp_max_array_or_list_number_of_items = 4
|
|
fsharp_max_function_binding_width=0
|
|
|
|
# C# files
|
|
[*.cs]
|
|
|
|
#### Core EditorConfig Options ####
|
|
|
|
# Indentation and spacing
|
|
indent_size = 4
|
|
tab_width = 4
|
|
|
|
# New line preferences
|
|
insert_final_newline = false |