forked from Pirate-Weather/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31ea601
commit b6a5640
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
; EditorConfig is awesome: http://EditorConfig.org | ||
|
||
root = true | ||
|
||
; Ruby/JS style | ||
; UTF-8 charset | ||
; Unix-style newlines with a newline ending every file | ||
; 2 space indent | ||
; Trim trailing whitespace | ||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
; Markdown | ||
; 4 space indent | ||
; Trailing whitespace is potentially meaningful, leave it | ||
[*.md] | ||
indent_size = 4 | ||
trim_trailing_whitespace = false | ||
|
||
; Shell scripts | ||
; 4 space indent | ||
[*.sh] | ||
indent_size = 4 |