-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Java 1, Adding Make Ensure, Syncing all go modules.
Updating editorconfig so that schema.json doesn't try to reformat each time
- Loading branch information
Showing
30 changed files
with
195 additions
and
74 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 |
---|---|---|
@@ -1,16 +1,57 @@ | ||
# EditorConfig helps maintain consistent coding styles across editors and IDEs | ||
# More details at https://editorconfig.org | ||
|
||
# Root editorconfig file | ||
root = true | ||
|
||
# Apply to all files | ||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
# JSON files - noticed in schema.json using 4 spaces | ||
[*.json] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# YAML files | ||
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Markdown files | ||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
# TypeScript files | ||
[*.{ts,tsx}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Go files | ||
[*.go] | ||
indent_style = tab | ||
tab_width = 4 | ||
|
||
# Python files | ||
[*.py] | ||
indent_size = 4 | ||
max_line_length = 100 | ||
|
||
# Java files | ||
[*.java] | ||
indent_size = 4 | ||
|
||
# JavaScript files | ||
[*.{js,jsx}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Ignore venv folders | ||
[**/venv/**] | ||
indent_style = unset | ||
indent_size = unset |
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.144.1 | ||
3.146.0 |
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
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
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
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
Oops, something went wrong.