-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.editorconfig
More file actions
35 lines (26 loc) · 822 Bytes
/
.editorconfig
File metadata and controls
35 lines (26 loc) · 822 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
# This is the "top-most" .editorconfig for this project.
# Like a `.gitignore` file, you can place additional
# .editorconfig files in specific directories, if you need
# local settings. However, this directive specifies that
# no "global" settings will be used (settings from higher-
# up in the directory hierarchy, wherever that may be)
root = true
# Set the default whitespace settings for all files
[*]
# Sensible modern default
charset = utf-8
# Use UNIX-style line endings
end_of_line = lf
# 4-space indents
indent_size = 4
indent_style = space
# end all files with a newline
insert_final_newline = true
# trim whitespace from the ends of lines
trim_trailing_whitespace = true
[*.{yml,yaml}]
# Set two-space indents for YAML files
indent_size = 2
[Makefile]
# Makefiles *must* use tabs!
indent_style = tab