-
Notifications
You must be signed in to change notification settings - Fork 25
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
67da6ee
commit 287cfbf
Showing
11 changed files
with
160 additions
and
1,747 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,37 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
# This is the top-most .editorconfig file (do not search in parent directories) | ||
root = true | ||
|
||
# 4 space indentation for all starlark files | ||
[*.star] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# 4 space indentation for all python files | ||
[*.py] | ||
|
||
# 2 space indentation for all yaml files | ||
[*.yml, *.yaml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# 2 space indentation for all json files | ||
[*.json] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.yaml] | ||
indent_style = space | ||
indent_size = 2 |
Oops, something went wrong.