Skip to content

Commit 0353be1

Browse files
author
Paweł Niedzielski
committed
Add editor config settings for IDE's that support it
see https://editorconfig.org/
1 parent c6f9456 commit 0353be1

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Diff for: .editorconfig

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
root = true
2+
3+
# Unix-style newlines with a newline ending every file
4+
[*]
5+
end_of_line = lf
6+
insert_final_newline = true
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
10+
[*.js]
11+
indent_style = space
12+
indent_size = 2
13+
14+
[*.php]
15+
indent_style = space
16+
indent_size = 4
17+
18+
[{package.json, *.yml}]
19+
indent_style = space
20+
indent_size = 2
21+
22+
[*.md]
23+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)