Skip to content
This repository was archived by the owner on Mar 7, 2019. It is now read-only.

Commit 270437d

Browse files
Add editorconfig 🎉
1 parent b7d4271 commit 270437d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

‎.editorconfig

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# editorconfig.org
2+
3+
# This is the project's root directory
4+
root = true
5+
6+
[{*, .*}]
7+
# Use spaces for indentation
8+
indent_style = space
9+
# Each indent should contain 2 spaces
10+
indent_size = 2
11+
# Use Unix line endings
12+
end_of_line = lf
13+
# The files are utf-8 encoded
14+
charset = utf-8
15+
# No whitespace at the end of line
16+
trim_trailing_whitespace = true
17+
# A file must end with an empty line - this is good for version control systems
18+
insert_final_newline = true
19+
# A line should not have more than this amount of chars (not supported by all plugins)
20+
max_line_length = 100
21+
22+
[COMMIT_EDITMSG]
23+
max_line_length = 70

0 commit comments

Comments
 (0)