Skip to content

Commit 4ad8d88

Browse files
committed
minor #104 Add an EditorConfig file (Lyrkan)
This PR was merged into the master branch. Discussion ---------- Add an EditorConfig file This PR adds an [.editorconfig](http://editorconfig.org/) file at the root of the project with the following settings: * Unix line endings * For JS files: * 4-spaces indents * Trim trailing whitespaces * Insert a new line at the end of each file Commits ------- a26fa15 Add EditorConfig file
2 parents 2abb1e3 + a26fa15 commit 4ad8d88

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
; top-most EditorConfig file
2+
root = true
3+
4+
; Unix-style newlines
5+
[*]
6+
end_of_line = LF
7+
8+
[*.js]
9+
indent_style = space
10+
indent_size = 4
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true

0 commit comments

Comments
 (0)