]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Update .editorconfig to correspond Code Conventions (#26824)
authorToken <esil.bektay@yandex.com>
Fri, 12 Apr 2024 06:50:10 +0000 (11:50 +0500)
committerGitHub <noreply@github.com>
Fri, 12 Apr 2024 06:50:10 +0000 (16:50 +1000)
Update editorconfig to Code Style

End of line is: CRLF (suggestion)
Namespace declarations are: file scoped (suggestion). Instead of block scoped

.editorconfig

index 872a068c7c626e1d3b87c1409fbb5599473a0775..58d0d332bbe6ae90793de43872870b31cf67ef76 100644 (file)
@@ -9,7 +9,7 @@ indent_style = space
 tab_width = 4
 
 # New line preferences
-#end_of_line = crlf
+end_of_line = crlf:suggestion
 insert_final_newline = true
 trim_trailing_whitespace = true
 
@@ -104,6 +104,7 @@ csharp_preferred_modifier_order = public, private, protected, internal, new, abs
 
 # 'using' directive preferences
 csharp_using_directive_placement = outside_namespace:silent
+csharp_style_namespace_declarations = file_scoped:suggestion
 
 #### C# Formatting Rules ####