Skip to content

Commit be79ad9

Browse files
committed
Add editor config
1 parent b9536e9 commit be79ad9

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.editorconfig

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
# This file is for unifying the coding style for different editors and IDEs
3+
# editorconfig.org
4+
5+
# WordPress Coding Standards
6+
# https://make.wordpress.org/core/handbook/coding-standards/
7+
8+
root = true
9+
10+
[*]
11+
charset = utf-8
12+
end_of_line = lf
13+
insert_final_newline = true
14+
trim_trailing_whitespace = true
15+
indent_style = tab
16+
17+
[*.yml]
18+
indent_style = space
19+
indent_size = 2
20+
21+
[*.md]
22+
trim_trailing_whitespace = false
23+
24+
[*.txt]
25+
end_of_line = crlf

0 commit comments

Comments
 (0)