blob: f6fbafbbe5a1db56f610de636360c7aaf480d3f6 (
plain)
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
|
# EditorConfig file for SCons project
root = true
[*]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8
[{*.py,SConstruct,SConscript}]
max_line_length = 88
ensure_newline_before_comments = true
include_trailing_comma = true
use_parentheses = true
[*.{xml,yml,yaml}]
indent_size = 2
[*.rst]
indent_size = 3
[*.{bat,cmd,ps1}]
end_of_line = crlf
|