Skip to content

Commit a6dda8f

Browse files
committed
adding editorconfig file for consistency
1 parent 47e9ce8 commit a6dda8f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Diff for: .editorconfig

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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 = 4
19+
continuation_indent_size = 2
20+
21+
[*.py]
22+
indent_style = space
23+
indent_size = 4
24+
25+
[*.html]
26+
indent_style = space
27+
indent_size = 2

0 commit comments

Comments
 (0)