forked from rapidez/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
34 lines (27 loc) · 876 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
32
33
34
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
# Unofficial config, support depends on the application reading the file.
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#supported-by-a-limited-number-of-editors
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#ideas-for-domain-specific-properties
max_line_length = off
quote_type = single
spaces_around_operators = true
spaces_around_brackets = none
# https://en.wikipedia.org/wiki/Indent_style
indent_brace_style = K&R
[*.md]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_style = space
indent_size = 2
[*.{blade.php,html}]
max_line_length = 400
[*.{js,vue}]
max_line_length = 140