aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-08-11 01:12:28 -0700
committerRob Mensching <rob@firegiant.com>2018-08-11 01:12:28 -0700
commitf34941825894d44059a560d9f95016ac97803504 (patch)
tree2d81fa80cefb53d8a41b335679196d046baff292 /.editorconfig
parentc7d69b36789b6403f5b02a975afad80f6b23b48b (diff)
downloadwix-f34941825894d44059a560d9f95016ac97803504.tar.gz
wix-f34941825894d44059a560d9f95016ac97803504.tar.bz2
wix-f34941825894d44059a560d9f95016ac97803504.zip
Fix Build and Clean targets
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig28
1 files changed, 28 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..4ceaca17
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,28 @@
1# Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3root = true
4
5[*]
6charset = utf-8
7indent_style = space
8indent_size = 4
9trim_trailing_whitespace = true
10
11[*.{cs,vb}]
12dotnet_sort_system_directives_first = true
13
14[*.cs]
15csharp_indent_case_contents = true : error
16csharp_indent_switch_labels = true : error
17csharp_new_line_before_open_brace = all
18csharp_prefer_braces = true : error
19csharp_style_var_elsewhere = true : suggestion
20csharp_style_var_for_built_in_types = true : suggestion
21csharp_style_var_when_type_is_apparent = true : suggestion
22dotnet_style_qualification_for_event = true : error
23dotnet_style_qualification_for_field = true : error
24dotnet_style_qualification_for_method = true : error
25dotnet_style_qualification_for_property = true : error
26
27[*.targets]
28indent_size = 2