-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
41 lines (30 loc) · 1.15 KB
/
.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
39
40
41
# Editor configuration. See https://editorconfig.org
# The complete list of properties can be found at https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
# Topmost EditorConfig file
root = true
[*]
# charset = latin1 | utf-8 | utf-16be (big-endian?) | utf-16le (little-endian?) | utf-8-bom (bom = byte order marker)
charset = utf-8
# indent_style = tab | space
indent_style = tab
# indent_size = tab | a positive integer ; tab_width defaults to indent_size when indent_size is a number
indent_size = 4
# tab_width = a positive integer
# tab_width = 4
# max_line_length = a positive integer | off
# max_line_length is supported by: Emacs, Vim, Atom, (ReSharper and Rider),
# (AppCode, IntelliJ IDEA, PhpStorm, PyCharm, RubyMine, and WebStorm), and Kakoune
max_line_length = 100
# trim_trailing_whitespace = true | false
trim_trailing_whitespace = true
# end_of_line = cr | crlf | lf
end_of_line = lf
# insert_final_newline = true | false
insert_final_newline = true
[*.md]
max_line_length = off
trim_trailing_whitespace = false
# Tabs are forbidden in YAML files. See https://yaml.org/faq.html
[*.{yaml,yml}]
indent_style = space
indent_size = 2