Skip to content

Commit 2cc2572

Browse files
committed
add editor config
1 parent 8aa700d commit 2cc2572

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.editorconfig

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# coding styles between different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
8+
# Change these settings to your own preference
9+
indent_style = space
10+
indent_size = 4
11+
12+
# We recommend you to keep these unchanged
13+
end_of_line = lf
14+
charset = utf-8
15+
trim_trailing_whitespace = true
16+
insert_final_newline = false
17+
18+
[*.{js,html,blade.php,css,scss}]
19+
indent_style = space
20+
indent_size = 4
21+
22+
[*.md]
23+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)