Skip to content

Commit

Permalink
Merge pull request #141 from seedcase-project/repo-sync/team/default
Browse files Browse the repository at this point in the history
🔄 synced file(s) with seedcase-project/team
  • Loading branch information
lwjohnst86 authored Aug 14, 2023
2 parents 21241ad + bfdb410 commit bddacb7
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 7 deletions.
27 changes: 27 additions & 0 deletions .editorconfig
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
46 changes: 39 additions & 7 deletions .gitignore
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/*

0 comments on commit bddacb7

Please sign in to comment.