-
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.
- Loading branch information
Tim Nunamaker
committed
Jul 27, 2024
1 parent
a4365a6
commit 9f2a268
Showing
8 changed files
with
496 additions
and
46 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 |
---|---|---|
|
@@ -78,4 +78,4 @@ ehthumbs.db | |
Thumbs.db | ||
|
||
# IDEs | ||
.idea/ | ||
.idea/ |
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 @@ | ||
pytest==8.3.2 |
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 @@ | ||
pyyaml==6.0.1 |
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 |
---|---|---|
|
@@ -37,4 +37,7 @@ | |
install_requires=[ | ||
# Add any dependencies here | ||
], | ||
extras_require={ | ||
'dev': ['pytest>=8.3.2'], | ||
}, | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,226 @@ | ||
everything: | ||
is_default: false | ||
args: | ||
- . | ||
|
||
common: | ||
is_default: true | ||
args: | ||
# Common exclusions | ||
- --exclude=.* | ||
- --exclude=.*/ | ||
- --exclude=*.log | ||
- --exclude=*.bak | ||
- --exclude=*.tmp | ||
- --exclude=*.temp | ||
- --exclude=*.swp | ||
- --exclude=*.swo | ||
- --exclude=*~ | ||
- --exclude=Thumbs.db | ||
- --exclude=.DS_Store | ||
|
||
# Version control | ||
- --exclude=.git | ||
- --exclude=.svn | ||
- --exclude=.hg | ||
|
||
# IDE and editor files | ||
- --exclude=.vscode | ||
- --exclude=.idea | ||
- --exclude=*.sublime-* | ||
|
||
# Build outputs and dependencies | ||
- --exclude=venv | ||
- --exclude=env | ||
- --exclude=.venv | ||
- --exclude=__pycache__ | ||
- --exclude=*.pyc | ||
- --exclude=*.pyo | ||
- --exclude=*.pyd | ||
- --exclude=*.egg-info | ||
- --exclude=.pytest_cache | ||
- --exclude=.mypy_cache | ||
- --exclude=.coverage | ||
- --exclude=htmlcov | ||
- --exclude=node_modules | ||
- --exclude=bower_components | ||
- --exclude=dist | ||
- --exclude=build | ||
- --exclude=.next | ||
- --exclude=.nuxt | ||
- --exclude=*.min.js | ||
- --exclude=*.min.css | ||
- --exclude=vendor/ | ||
- --exclude=*.class | ||
- --exclude=*.jar | ||
- --exclude=*.war | ||
- --exclude=*.ear | ||
- --exclude=target/ | ||
- --exclude=*.o | ||
- --exclude=*.a | ||
- --exclude=*.so | ||
- --exclude=*.dll | ||
- --exclude=*.exe | ||
- --exclude=*.out | ||
- --exclude=*.app | ||
- --exclude=*.dylib | ||
- --exclude=*.bin | ||
- --exclude=*.dSYM | ||
- --exclude=*.elf | ||
|
||
# Lock files | ||
- --exclude=package-lock.json | ||
- --exclude=yarn.lock | ||
- --exclude=Gemfile.lock | ||
- --exclude=Pipfile.lock | ||
- --exclude=Cargo.lock | ||
|
||
# Potential secret files | ||
- --exclude=*.env | ||
- --exclude=.env* | ||
- --exclude=*.pem | ||
- --exclude=*.key | ||
- --exclude=*_rsa | ||
- --exclude=*_dsa | ||
- --exclude=*.crt | ||
- --exclude=*.cer | ||
|
||
# Documentation and media files | ||
- --exclude=*.pdf | ||
- --exclude=*.doc | ||
- --exclude=*.docx | ||
- --exclude=*.ppt | ||
- --exclude=*.pptx | ||
- --exclude=*.xls | ||
- --exclude=*.xlsx | ||
- --exclude=*.jpg | ||
- --exclude=*.jpeg | ||
- --exclude=*.png | ||
- --exclude=*.gif | ||
- --exclude=*.bmp | ||
- --exclude=*.svg | ||
- --exclude=*.ico | ||
- --exclude=*.mp3 | ||
- --exclude=*.mp4 | ||
- --exclude=*.avi | ||
- --exclude=*.mov | ||
|
||
# Include all directory paths | ||
- --include=*/ | ||
|
||
# Include common source code files | ||
- --include=*.py | ||
- --include=*.ipynb | ||
- --include=*.js | ||
- --include=*.ts | ||
- --include=*.jsx | ||
- --include=*.tsx | ||
- --include=*.html | ||
- --include=*.htm | ||
- --include=*.css | ||
- --include=*.scss | ||
- --include=*.sass | ||
- --include=*.rb | ||
- --include=*.erb | ||
- --include=*.java | ||
- --include=*.kt | ||
- --include=*.groovy | ||
- --include=*.c | ||
- --include=*.cpp | ||
- --include=*.cc | ||
- --include=*.cxx | ||
- --include=*.h | ||
- --include=*.hpp | ||
- --include=*.cs | ||
- --include=*.fs | ||
- --include=*.vb | ||
- --include=*.go | ||
- --include=*.rs | ||
- --include=*.php | ||
- --include=*.scala | ||
- --include=*.swift | ||
- --include=*.m | ||
- --include=*.mm | ||
- --include=*.sh | ||
- --include=*.bash | ||
- --include=*.zsh | ||
- --include=*.sql | ||
|
||
# Include common configuration and data files | ||
- --include=*.ini | ||
- --include=*.cfg | ||
- --include=*.conf | ||
- --include=*.toml | ||
- --include=*.yaml | ||
- --include=*.yml | ||
- --include=*.json | ||
|
||
# Include specific important configuration files | ||
- --include=.gitignore | ||
- --include=.dockerignore | ||
- --include=requirements.txt | ||
- --include=Pipfile | ||
- --include=package.json | ||
- --include=tsconfig.json | ||
- --include=Gemfile | ||
- --include=pom.xml | ||
- --include=build.gradle | ||
- --include=settings.gradle | ||
- --include=Cargo.toml | ||
- --include=.editorconfig | ||
|
||
# Include documentation files | ||
- --include=*.md | ||
- --include=*.rst | ||
- --include=*.txt | ||
|
||
# Include other important files | ||
- --include=Dockerfile | ||
- --include=*.dockerfile | ||
- --include=Makefile | ||
- --include=*.mk | ||
- --include=*.gradle | ||
- --include=*.plist | ||
|
||
# Exclude everything else | ||
- --exclude=* | ||
|
||
# Root directory | ||
- . | ||
|
||
# Add more presets as needed, for example: | ||
|
||
docs-only: | ||
is_default: false | ||
args: | ||
|
||
# Include all directories for traversal | ||
- --include=*/ | ||
|
||
# Include only documentation files | ||
- --include=*.md | ||
- --include=*.rst | ||
- --include=*.txt | ||
- --include=*.adoc | ||
- --include=*.docx | ||
- --include=*.pdf | ||
|
||
# Include specific documentation files | ||
- --include=README* | ||
- --include=CONTRIBUTING* | ||
- --include=CHANGELOG* | ||
- --include=LICENSE* | ||
|
||
# Include documentation directories | ||
- --include=docs/*** | ||
- --include=documentation/*** | ||
- --include=wiki/*** | ||
|
||
# Prune other directories to speed up the process | ||
- --prune-empty-dirs | ||
|
||
# Exclude everything by default | ||
- --exclude=* | ||
|
||
# Root directory | ||
- . |
Oops, something went wrong.