-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
27 lines (23 loc) · 873 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
# EditorConfig is awesome: https://EditorConfig.org
# EditorConfig helps maintain consistent coding styles for multiple developers
# working on the same project across various editors and IDEs
# See how to download a plugin for your editor/ IDE: https://editorconfig.org/#download
# Reference: https://github.com/NdagiStanley/dotfiles/blob/main/code/.editorconfig
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
# Trailing whitespaces trimmed
# Set default character encoding (just in case)
# Set default indent style
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
indent_style = space
# 2 space indentation by default
indent_size = 2
# Matches multiple files with brace expansion notation
# 4 space indentation for specific extensions
[*.{py,js,css,sh}]
indent_size = 4