mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
9f6729ad60
Disabled examples for now
29 lines
833 B
INI
29 lines
833 B
INI
[*]
|
|
indent_style = space
|
|
|
|
[*.{cs,csx,vb,vbx}]]
|
|
indent_size = 4
|
|
insert_final_newline = true
|
|
charset = utf-8-bom
|
|
|
|
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
|
|
indent_size = 2
|
|
|
|
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
|
|
indent_size = 2
|
|
|
|
[*.{cs,vb}]
|
|
# Sort using and Import directives with System.* appearing first
|
|
dotnet_sort_system_directives_first = true
|
|
dotnet_style_require_accessibility_modifiers = always:warning
|
|
|
|
# Avoid "this." and "Me." if not necessary
|
|
dotnet_style_qualification_for_field = false:warning
|
|
dotnet_style_qualification_for_property = false:warning
|
|
dotnet_style_qualification_for_method = false:warning
|
|
dotnet_style_qualification_for_event = false:warning
|
|
|
|
# Code-block preferences
|
|
csharp_prefer_braces = true:warning
|
|
csharp_prefer_simple_using_statement = true:warning
|