forked from coderedcorp/coderedcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
26 lines (22 loc) · 722 Bytes
/
.editorconfig
File metadata and controls
26 lines (22 loc) · 722 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
# EditorConfig is awesome: https://EditorConfig.org
#
# EditorConfig helps keep your files clean and uniform by specifying tabs vs
# spaces, file encodings, etc. Download a plugin for your editor:
# https://editorconfig.org/#download
# top-most EditorConfig file
root = true
# Save files in UTF-8, with Unix-style newlines, with a blank line at the end,
# and trim any rogue whitespace (e.g. spaces, tabs at the end of lines.)
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# Use 4 spaced for indentation.
[*.{md,py,rst}]
indent_style = space
indent_size = 4
# Use 2 spaces for indentation.
[*.{css,sass,scss,html,js,json,ts,yml}]
indent_style = space
indent_size = 2