Skip to content

Commit 457ce30

Browse files
committed
Merge pull request #346 from ddavison/dot-editorconfig
Dot editorconfig
2 parents a38c7f6 + ac34dca commit 457ce30

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

Diff for: .editorconfig

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false
15+
16+
[*.java]
17+
indent_style = space
18+
indent_size = 2
19+
continuation_indent_size = 2
20+
21+
[*.py]
22+
indent_style = space
23+
indent_size = 4
24+
25+
[*.rb]
26+
indent_style = space
27+
indent_size = 2
28+
29+
[*.js]
30+
indent_style = space
31+
indent_size = 2
32+
33+
[*.html]
34+
indent_style = space
35+
indent_size = 2

0 commit comments

Comments
 (0)