diff options
author | Pieter-Jan Briers <pieterjan.briers@gmail.com> | 2018-07-20 08:42:13 +0200 |
---|---|---|
committer | Pieter-Jan Briers <pieterjan.briers@gmail.com> | 2018-07-20 08:42:13 +0200 |
commit | 4c40227af622ad2e83557908fd56f1c1f26fc1ed (patch) | |
tree | cfda0f1575f36926b6e53d729bf6db5480866130 /.editorconfig | |
parent | 76bfe14e00ee5c8b65275d8b8e0c4cdc25b4b899 (diff) |
Adds C# rule to .editorconfig.
C# standard is 4 width spaces, not tabs.
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index e51d0d4c60..d4b7fbb471 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,7 +9,7 @@ insert_final_newline = true [*.{cpp,hpp,c,h,mm}] trim_trailing_whitespace = true -[*.py] +[*.{py,cs}] indent_style = space indent_size = 4 |