-
Notifications
You must be signed in to change notification settings - Fork 44
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
ed882f0
commit b738c19
Showing
1 changed file
with
31 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,31 @@ | ||
# Configuration file for EditorConfig, see https://EditorConfig.org | ||
|
||
# Ignore any other files further up in the file system | ||
root = true | ||
|
||
# All files: | ||
[*] | ||
# Let git determine line ending: end_of_line = lf | ||
charset = utf-8 | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
# Markdown files: keep trailing space-pair as line-break | ||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
# Python scripts: | ||
[*.py] | ||
|
||
# YAML scripts: | ||
[*.yml] | ||
indent_size = 2 | ||
|
||
# Makefiles: Tab indentation (no size specified) | ||
[Makefile] | ||
indent_style = tab | ||
|
||
# C, C++ source files: | ||
[*.{h,hpp,c,cpp}] |