Skip to content

Commit 9809360

Browse files
authored
initial public version (#82)
* initial public version * remove stretch test that does not work
1 parent 02d26fe commit 9809360

File tree

1,902 files changed

+458977
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,902 files changed

+458977
-80
lines changed

.editorconfig

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Don't use tabs for indentation.
5+
[*]
6+
indent_style = space
7+
# (Please don't specify an indent_size here; that has too many unintended consequences.)
8+
9+
# IDE0073: File header
10+
file_header_template = Copyright (c) Microsoft.\nLicensed under the MIT license.
11+
12+
# Code files
13+
[*.{cs, sql}]
14+
indent_size = 4
15+
16+
# JSON and XML files
17+
[*.{json,xml} ]
18+
indent_size = 2
19+
20+
21+
22+
[*.cs]
23+
### Dotnet code style settings ###
24+
25+
# Organize usings
26+
dotnet_separate_import_directive_groups = false
27+
dotnet_sort_system_directives_first = true
28+
29+
# Avoid "this." if not necessary
30+
dotnet_style_qualification_for_field = false:silent
31+
dotnet_style_qualification_for_property = false:silent
32+
dotnet_style_qualification_for_method = false:silent
33+
dotnet_style_qualification_for_event = false:silent
34+
35+
# Use language keywords instead of framework type names for type references
36+
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
37+
dotnet_style_predefined_type_for_member_access = true:suggestion
38+
39+
# Parentheses preferences
40+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
41+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
42+
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
43+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
44+
45+
# Modifier preferences
46+
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
47+
48+
# Field preferences
49+
dotnet_style_readonly_field = true:suggestion
50+
51+
# Parameter preferences
52+
dotnet_code_quality_unused_parameters = all:suggestion
53+
54+
# Expression-level preferences
55+
dotnet_style_coalesce_expression = true:suggestion
56+
dotnet_style_collection_initializer = true:suggestion
57+
dotnet_style_explicit_tuple_names = true:suggestion
58+
dotnet_style_null_propagation = true:suggestion
59+
dotnet_style_object_initializer = true:suggestion
60+
dotnet_style_prefer_auto_properties = true:silent
61+
dotnet_style_prefer_compound_assignment = true:suggestion
62+
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
63+
dotnet_style_prefer_conditional_expression_over_return = true:silent
64+
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
65+
dotnet_style_prefer_inferred_tuple_names = true:suggestion
66+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
67+
dotnet_style_prefer_simplified_interpolation = true:suggestion
68+
69+
#### C# Coding Conventions ####
70+
71+
# Prefer "var" everywhere
72+
csharp_style_var_for_built_in_types = true:silent
73+
csharp_style_var_when_type_is_apparent = true:silent
74+
csharp_style_var_elsewhere = true:silent
75+
76+
# Prefer method-like constructs to have a block body, except for lambdas
77+
csharp_style_expression_bodied_methods = false:none
78+
csharp_style_expression_bodied_constructors = false:none
79+
csharp_style_expression_bodied_operators = false:none
80+
csharp_style_expression_bodied_local_functions = false:none
81+
csharp_style_expression_bodied_lambdas = true:none
82+
83+
84+
# Pattern matching preferences
85+
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
86+
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
87+
csharp_style_prefer_switch_expression = true:suggestion
88+
89+
# Null-checking preferences
90+
csharp_style_conditional_delegate_call = true:suggestion
91+
92+
# Modifier preferences
93+
csharp_prefer_static_local_function = true:suggestion
94+
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:silent
95+
96+
# Code-block preferences
97+
csharp_prefer_braces = when_multiline:suggestion
98+
csharp_prefer_simple_using_statement = true:suggestion
99+
100+
# Expression-level preferences
101+
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
102+
csharp_prefer_simple_default_expression = true:suggestion
103+
csharp_style_deconstructed_variable_declaration = true:suggestion
104+
csharp_style_inlined_variable_declaration = true:suggestion
105+
csharp_style_pattern_local_over_anonymous_function = true:suggestion
106+
csharp_style_prefer_index_operator = true:suggestion
107+
csharp_style_prefer_range_operator = true:suggestion
108+
csharp_style_throw_expression = true:suggestion
109+
csharp_style_unused_value_expression_statement_preference = discard_variable:silent
110+
111+
# 'using' directive preferences
112+
csharp_using_directive_placement = outside_namespace:silent
113+
114+
#### C# Formatting Rules ####
115+
116+
# New line preferences
117+
csharp_new_line_before_open_brace = all
118+
csharp_new_line_before_else = true
119+
csharp_new_line_before_catch = true
120+
csharp_new_line_before_finally = true
121+
csharp_new_line_before_members_in_object_initializers = true
122+
csharp_new_line_before_members_in_anonymous_types = true
123+
csharp_new_line_between_query_expression_clauses = true
124+
125+
# Indentation preferences
126+
csharp_indent_block_contents = true
127+
csharp_indent_braces = false
128+
csharp_indent_case_contents = true
129+
csharp_indent_case_contents_when_block = true
130+
csharp_indent_labels = no_change
131+
csharp_indent_switch_labels = true
132+
133+
# Space preferences
134+
csharp_space_after_cast = false
135+
csharp_space_after_colon_in_inheritance_clause = true
136+
csharp_space_after_comma = true
137+
csharp_space_after_dot = false
138+
csharp_space_after_keywords_in_control_flow_statements = true
139+
csharp_space_after_semicolon_in_for_statement = true
140+
csharp_space_around_binary_operators = before_and_after
141+
csharp_space_around_declaration_statements = false
142+
csharp_space_before_colon_in_inheritance_clause = true
143+
csharp_space_before_comma = false
144+
csharp_space_before_dot = false
145+
csharp_space_before_open_square_brackets = false
146+
csharp_space_before_semicolon_in_for_statement = false
147+
csharp_space_between_empty_square_brackets = false
148+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
149+
csharp_space_between_method_call_name_and_opening_parenthesis = false
150+
csharp_space_between_method_call_parameter_list_parentheses = false
151+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
152+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
153+
csharp_space_between_method_declaration_parameter_list_parentheses = false
154+
csharp_space_between_parentheses = false
155+
csharp_space_between_square_brackets = false
156+

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Use text conventions for commonly used text extensions.
5+
*.csv text
6+
*.ini text
7+
*.json text
8+
*.txt text
9+
*.xml text
10+
11+
# Denote all files that are truly binary and should not be modified.
12+
*.dll binary
13+
*.exe binary
14+
*.gz binary
15+
*.ico binary
16+
*.jpg binary
17+
*.lib binary
18+
*.pdb binary
19+
*.pdf binary
20+
*.png binary
21+
*.wim binary
22+
*.zip binary

0 commit comments

Comments
 (0)