-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from seedcase-project/repo-sync/team/default
🔄 synced file(s) with seedcase-project/team
- Loading branch information
Showing
2 changed files
with
66 additions
and
7 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,27 @@ | ||
# EditorConfig settings. Some editors will read these automatically; | ||
# for those that don't, see here: http://editorconfig.org/ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
max_line_length = 88 | ||
|
||
# Have a bit shorter line length for text docs | ||
[*.{txt,md,qmd}] | ||
max_line_length = 72 | ||
indent_size = 4 | ||
|
||
# Python always uses 4 spaces for tabs | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# Makefiles always use tabs for indentation | ||
[Makefile] | ||
indent_style = tab |
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,12 +1,44 @@ | ||
# Development files and folders | ||
_ignore | ||
bin/ | ||
dev/ | ||
|
||
# Temporary files | ||
*.tmp | ||
|
||
# Any IDE specific folders | ||
.idea | ||
|
||
# Any .env files | ||
.env | ||
.env.* | ||
**/.env.* | ||
|
||
# Python venv folder | ||
venv | ||
|
||
# MacOS specific files | ||
.DS_Store | ||
|
||
# R specific files | ||
.Rbuildignore | ||
.Rhistory | ||
.RData | ||
.Rproj.user | ||
*.tmp | ||
docs | ||
_site | ||
|
||
# Quarto files | ||
/.quarto/ | ||
_ignore | ||
.Rbuildignore | ||
.DS_Store | ||
bin/ | ||
|
||
# Site files | ||
_site | ||
_book | ||
public | ||
|
||
# Ignore test coverages and results | ||
htmlcov/ | ||
junit/ | ||
coverage.xml | ||
.coverage | ||
|
||
# Local data files | ||
**/datafile/* |