diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-07-22 19:56:37 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-07-23 17:04:53 -0400 |
commit | 5f8275d9ac1f262c04d95242f110ca835871c6b7 (patch) | |
tree | 36bfb002e33257c88235d5dd16c2dff223f11f6b /modules/mono/.editorconfig | |
parent | b918c4c3ce84af1f8af2d06ef31784f48a15551a (diff) |
Add a simple C# .editorconfig
Diffstat (limited to 'modules/mono/.editorconfig')
-rw-r--r-- | modules/mono/.editorconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/mono/.editorconfig b/modules/mono/.editorconfig new file mode 100644 index 0000000000..c9dcd7724e --- /dev/null +++ b/modules/mono/.editorconfig @@ -0,0 +1,14 @@ +[*.sln] +indent_style = tab + +[*.{csproj,props,targets,nuspec,resx}] +indent_style = space +indent_size = 2 + +[*.cs] +indent_style = space +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true +max_line_length = 120 +csharp_indent_case_contents_when_block = false |