-
Notifications
You must be signed in to change notification settings - Fork 2
/
.editorconfig
36 lines (30 loc) · 1.09 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
# ╔═╗╔╦╗╦╔╦╗╔═╗╦═╗┌─┐┌─┐┌┐┌┌─┐┬┌─┐
# ║╣ ║║║ ║ ║ ║╠╦╝│ │ ││││├┤ ││ ┬
# o╚═╝═╩╝╩ ╩ ╚═╝╩╚═└─┘└─┘┘└┘└ ┴└─┘
#
# This file (`.editorconfig`) exists to help maintain consistent formatting
# throughout this package, the Sails framework, and the Node-Machine project.
#
# To review what each of these options mean, see:
# http://editorconfig.org/
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
root = true
[*]
indent_style = space
indent_size = 4
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = false
curly_bracket_next_line = true
indent_brace_style = Allman
[*.md]
trim_trailing_whitespace = false
[*.{ts,js}]
quote_type = double
curly_bracket_next_line = false
indent_brace_style = K&R
[*.{html,css}]
indent_size = 2
[{package.json, package.lock.json, requirements.txt}]
indent_size = 2