-
Notifications
You must be signed in to change notification settings - Fork 107
/
.editorconfig
39 lines (31 loc) · 865 Bytes
/
.editorconfig
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
37
38
# THIS FILE WAS AUTOGENERATED; DO NOT EDIT.
# Source: config/toolconfigsrc/editorconfig.
# Common config file for supported editors; see editorconfig.org.
# If you are using an editor that doesn't support editorconfig, try to
# conform to these settings manually.
# Note: while we autogenerate this file, we also check it into git
# because it affects how source is displayed on github.
# This is the top-most EditorConfig file.
root = true
# Defaults for all files.
[*]
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 80
# Python overrides.
[*.py]
indent_style = space
indent_size = 4
max_line_length = 80
charset = utf-8
# Makefile overrides.
[Makefile]
indent_style = tab
indent_size = 2
max_line_length = 80
# C/C++ overrides.
[*.{c,cc,h,cpp,hpp}]
indent_style = space
indent_size = 2
max_line_length = 80