Skip to content

Commit be3c259

Browse files
committed
Add .editorconfig file
This patch adds initial EditorConfig [1] file with sensible defaults specific for future PHP code, HTML templates, and possible other file types. It helps formating code and new files in editors and IDEs that utilize EditorConfig settings. Current state of EditorConfig provides setting identation style and level, new lines types, files encodings, and similar basic files and code configurations. [1] https://editorconfig.org
1 parent 3f4ad27 commit be3c259

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# https://editorconfig.org/
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 4
9+
indent_style = space
10+
tab_width = 4
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true

0 commit comments

Comments
 (0)