forked from ikkentim/SampSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
54 lines (46 loc) · 2.12 KB
/
.editorconfig
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
43
44
45
46
47
48
49
50
51
52
53
54
root=true
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
# Unix-style newlines with a newline ending every file
[*]
end_of_line=crlf
indent_size=4
indent_style=space
insert_final_newline=true
trim_trailing_whitespace=true
[*.cs]
insert_final_newline=false
trim_trailing_whitespace=false
# Standard properties
end_of_line=crlf
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers=false
csharp_preferred_modifier_order=public, private, protected, internal, new, abstract, virtual, sealed, override, static, readonly, extern, unsafe, volatile, async:suggestion
csharp_style_var_elsewhere=true:hint
csharp_style_var_for_built_in_types=true:hint
csharp_style_var_when_type_is_apparent=true:hint
dotnet_style_predefined_type_for_locals_parameters_members=true:hint
dotnet_style_predefined_type_for_member_access=true:hint
dotnet_style_qualification_for_event=false:hint
dotnet_style_qualification_for_field=false:hint
dotnet_style_qualification_for_method=false:hint
dotnet_style_qualification_for_property=false:hint
dotnet_style_require_accessibility_modifiers=for_non_interface_members:hint
# ReSharper properties
resharper_enforce_line_ending_style=true
resharper_keep_existing_declaration_parens_arrangement=false
resharper_place_accessorholder_attribute_on_same_line=False
resharper_place_field_attribute_on_same_line=False
resharper_use_indent_from_vs=false
resharper_xmldoc_indent_text=ZeroIndent
# ReSharper inspection severities
resharper_comment_typo_highlighting=hint
resharper_identifier_typo_highlighting=hint
resharper_redundant_base_qualifier_highlighting=warning
resharper_string_literal_typo_highlighting=hint
resharper_switch_statement_missing_some_cases_highlighting=none
resharper_unused_member_global_highlighting=hint
[*.{appxmanifest,asax,ascx,aspx,build,c,c++,cc,config,cp,cpp,cs,cshtml,csproj,css,cu,cuh,cxx,dbml,discomap,dtd,h,hh,hpp,htm,html,hxx,inc,inl,ino,ipp,js,json,jsproj,jsx,lsproj,master,mpp,njsproj,nuspec,proj,props,proto,razor,resjson,resw,resx,skin,StyleCop,targets,tasks,tpp,ts,tsx,vb,vbproj,xaml,xamlx,xml,xoml,xsd}]
indent_style=space
indent_size=4
tab_width=4