-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
54 lines (44 loc) · 1.03 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
42
43
44
45
46
47
48
49
50
51
52
53
54
# ____ __ __ __ _
# / ___) / \ / \ ( ( \
# \___ \( O )( O )/ / ____
# (____/ \__/ \__/ \_)__)(____)
#
# SOON_ Cross team root editorconfig configuration
# Projects can also have a local .editorconfig to customise syntax
#
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# Backend Languages (Python, Go, Ruby etc)
# Python
[*.py]
indent_style = space
indent_size = 4
line_length=80
multi_line_output=3
default_section=THIRDPARTY
import_heading_stdlib=Standard Libs
import_heading_thirdparty=Third Party Libs
import_heading_firstparty=First Party Libs
lines_after_imports=2
# Ruby
[{*.rb,Vagrantfile}]
indent_style = space
indent_size = 2
# Front End Languages (HTML, JS/TS, CSS etc)
[*.{js, ts, css, html}]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
## JS/TS
[*.{js, ts}]
quote_type = single
# Misc
# YAML Based files - 2 space indent
[*.{yml, yaml, sls}]
indent_style = space
indent_size = 2