-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy path.editorconfig
More file actions
36 lines (29 loc) · 653 Bytes
/
.editorconfig
File metadata and controls
36 lines (29 loc) · 653 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright (c) 2018-2020 SIL International
# This software is licensed under the LGPL, version 2.1 or later
# (http://www.gnu.org/licenses/lgpl-2.1.html)
root = true
# Defaults
[*]
indent_style = tab
indent_size = tab
tab_width = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
max_line_length = 98
[*.cs]
indent_style = tab
tab_width = 4
# Settings Visual Studio uses for generated files
[*.{csproj,resx,settings,vcxproj*,vdproj,xml,json}]
indent_style = space
indent_size = 2
# Generated file
[*.sln]
end_of_line = crlf
[*.{cpp,h}]
indent_style = tab
indent_size = 4
[*.proj]
indent_style = space
indent_size = 2