-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.editorconfig
31 lines (26 loc) · 854 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
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Tab indentation
[*]
indent_style = space
indent_size = 4
# Unix-style newlines with a newline ending every file
[*]
# Set to `lf`, `cr`, or `crlf` to control how line breaks are represented
end_of_line = lf
insert_final_newline = true
# Remove any whitespace characters preceding newline characters
trim_trailing_whitespace =true
# Set default charset `latin1`, `utf-8`, `utf-8-bom`, `utf-16be` or `utf-16le`
charset = utf-8
# Supported By A Limited Number of Editors
max_line_length = 120
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
# The indent size used in the `package.json` file cannot be changed
# https://github.com/npm/npm/pull/3180#issuecomment-16336516
[{*.yml,*.yaml,package.json}]
indent_style = space
indent_size = 2