openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.3.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.editorconfig

188lines · modecode

1# editorconfig.org
2
3# top-most EditorConfig file
4root = true
5
6[*]
7trim_trailing_whitespace = true
8
9# Default settings:
10# A newline ending every file
11# Use 4 spaces as indentation
12[sdk/*/{Azure.*,System.*}/**]
13insert_final_newline = true
14indent_style = space
15indent_size = 4
16
17# C# files
18[src/*/{Custom.*}/**.cs]
19# New line preferences
20csharp_new_line_before_open_brace = all # vs-default: any
21csharp_new_line_before_else = true # vs-default: true
22csharp_new_line_before_catch = true # vs-default: true
23csharp_new_line_before_finally = true # vs-default: true
24csharp_new_line_before_members_in_object_initializers = true # vs-default: true
25csharp_new_line_before_members_in_anonymous_types = true # vs-default: true
26csharp_new_line_between_query_expression_clauses = true # vs-default: true
27
28# Indentation preferences
29csharp_indent_block_contents = true # vs-default: true
30csharp_indent_braces = false # vs-default: false
31csharp_indent_case_contents = true # vs-default: true
32csharp_indent_case_contents_when_block = true
33csharp_indent_switch_labels = true # vs-default: true
34csharp_indent_labels = one_less_than_current # vs-default: one_less_than_current
35
36# Modifier preferences
37csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion
38
39# avoid this. unless absolutely necessary
40dotnet_style_qualification_for_field = false:suggestion # vs-default: false:none
41dotnet_style_qualification_for_property = false:suggestion # vs-default: false:none
42dotnet_style_qualification_for_method = false:suggestion # vs-default: false:none
43dotnet_style_qualification_for_event = false:suggestion # vs-default: false:none
44
45# only use var when it's obvious what the variable type is
46csharp_style_var_for_built_in_types = false:none # vs-default: true:none
47csharp_style_var_when_type_is_apparent = false:none # vs-default: true:none
48csharp_style_var_elsewhere = false:suggestion # vs-default: true:none
49
50# use language keywords instead of BCL types
51dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion # vs-default: true:none
52dotnet_style_predefined_type_for_member_access = true:suggestion # vs-default: true:none
53
54# name all constant fields using PascalCase
55dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
56dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
57dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
58
59dotnet_naming_symbols.constant_fields.applicable_kinds = field
60dotnet_naming_symbols.constant_fields.required_modifiers = const
61
62dotnet_naming_style.pascal_case_style.capitalization = pascal_case
63
64# static fields should have s_ prefix
65dotnet_naming_rule.static_fields_should_have_prefix.severity = suggestion
66dotnet_naming_rule.static_fields_should_have_prefix.symbols = static_fields
67dotnet_naming_rule.static_fields_should_have_prefix.style = static_prefix_style
68
69dotnet_naming_symbols.static_fields.applicable_kinds = field
70dotnet_naming_symbols.static_fields.required_modifiers = static
71dotnet_naming_symbols.static_fields.applicable_accessibilities = private, internal, private_protected
72dotnet_naming_style.static_prefix_style.required_prefix = s_
73dotnet_naming_style.static_prefix_style.capitalization = camel_case
74
75# internal and private fields should be _camelCase
76dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
77dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
78dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
79
80dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
81dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
82
83dotnet_naming_style.camel_case_underscore_style.required_prefix = _
84dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
85
86# Code style defaults
87csharp_using_directive_placement = outside_namespace:suggestion
88dotnet_sort_system_directives_first = true # vs-default: true
89csharp_prefer_braces = true:refactoring
90csharp_preserve_single_line_blocks = true # vs-default: true
91csharp_preserve_single_line_statements = false # vs-default: true
92csharp_prefer_static_local_function = true:suggestion
93csharp_prefer_simple_using_statement = false:none
94csharp_style_prefer_switch_expression = true:suggestion
95
96# Code quality
97dotnet_style_readonly_field = true:suggestion
98dotnet_code_quality_unused_parameters = non_public:suggestion
99
100# Expression-level preferences
101dotnet_style_object_initializer = true:suggestion # vs-default: true:suggestion
102dotnet_style_collection_initializer = true:suggestion # vs-default: true:suggestion
103dotnet_style_explicit_tuple_names = true:suggestion # vs-default: true:suggestion
104dotnet_style_coalesce_expression = true:suggestion # vs-default: true:suggestion
105dotnet_style_null_propagation = true:suggestion # vs-default: true:suggestion
106dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
107dotnet_style_prefer_inferred_tuple_names = true:suggestion
108dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
109dotnet_style_prefer_auto_properties = true:suggestion
110dotnet_style_prefer_conditional_expression_over_assignment = true:refactoring
111dotnet_style_prefer_conditional_expression_over_return = true:refactoring
112csharp_prefer_simple_default_expression = true:suggestion
113
114# Expression-bodied members
115csharp_style_expression_bodied_methods = false:none # vs-default: false:none
116csharp_style_expression_bodied_constructors = false:none # vs-default: false:none
117csharp_style_expression_bodied_operators = false:none # vs-default: false:none
118csharp_style_expression_bodied_properties = true:none # vs-default: true:none
119csharp_style_expression_bodied_indexers = true:none # vs-default: true:none
120csharp_style_expression_bodied_accessors = true:none # vs-default: true:none
121csharp_style_expression_bodied_lambdas = true:refactoring
122csharp_style_expression_bodied_local_functions = true:refactoring
123
124# Pattern matching
125csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion # vs-default: true:suggestion
126csharp_style_pattern_matching_over_as_with_null_check = true:suggestion # vs-default: true:suggestion
127csharp_style_inlined_variable_declaration = true:suggestion # vs-default: true:suggestion
128
129# Null checking preferences
130csharp_style_throw_expression = true:suggestion # vs-default: true:suggestion
131csharp_style_conditional_delegate_call = true:suggestion # vs-default: true:suggestion
132
133# Other features
134csharp_style_prefer_index_operator = false:none
135csharp_style_prefer_range_operator = false:none
136csharp_style_pattern_local_over_anonymous_function = false:none
137
138# Space preferences
139csharp_space_after_cast = false # vs-default: false
140csharp_space_after_colon_in_inheritance_clause = true # vs-default: true
141csharp_space_after_comma = true # vs-default: true
142csharp_space_after_dot = false # vs-default: false
143csharp_space_after_keywords_in_control_flow_statements = true # vs-default: true
144csharp_space_after_semicolon_in_for_statement = true # vs-default: true
145csharp_space_around_binary_operators = before_and_after # vs-default: before_and_after
146csharp_space_around_declaration_statements = do_not_ignore # vs-default: false
147csharp_space_before_colon_in_inheritance_clause = true # vs-default: true
148csharp_space_before_comma = false # vs-default: false
149csharp_space_before_dot = false # vs-default: false
150csharp_space_before_open_square_brackets = false # vs-default: false
151csharp_space_before_semicolon_in_for_statement = false # vs-default: false
152csharp_space_between_empty_square_brackets = false # vs-default: false
153csharp_space_between_method_call_empty_parameter_list_parentheses = false # vs-default: false
154csharp_space_between_method_call_name_and_opening_parenthesis = false # vs-default: false
155csharp_space_between_method_call_parameter_list_parentheses = false # vs-default: false
156csharp_space_between_method_declaration_empty_parameter_list_parentheses = false # vs-default: false
157csharp_space_between_method_declaration_name_and_open_parenthesis = false # vs-default: false
158csharp_space_between_method_declaration_parameter_list_parentheses = false # vs-default: false
159csharp_space_between_parentheses = false # vs-default: false
160csharp_space_between_square_brackets = false # vs-default: false
161
162# Require accessibility modifiers
163dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion # vs-default: for_non_interface_members:none
164
165# Analyzers
166dotnet_code_quality.ca1802.api_surface = private, internal
167
168# Xml project files
169[*.{csproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}]
170indent_size = 2
171
172# Xml build files
173[*.builds]
174indent_size = 2
175
176# Xml files
177[*.{xml,stylecop,resx,ruleset}]
178indent_size = 2
179
180# Xml config files
181[*.{props,targets,config,nuspec}]
182indent_size = 2
183
184# Shell scripts
185[*.sh]
186end_of_line = lf
187[*.{cmd, bat}]
188end_of_line = crlf