3 Commits

Author SHA1 Message Date
31f91fcd28 Merge pull request 'Make pip-audit run inside Poetry' (#7) from pip_audit_tweak into main
Reviewed-on: #7
2025-12-25 10:30:06 +00:00
5268e5834b Make pip-audit run inside Poetry
All checks were successful
Lint & Security / precommit-and-security (pull_request) Successful in 59s
2025-12-25 10:28:46 +00:00
532cc68fb3 Add logo file, update README 2025-12-21 08:44:09 +00:00
3 changed files with 13 additions and 2 deletions

View File

@@ -22,8 +22,15 @@ jobs:
- name: Run pre-commit hooks - name: Run pre-commit hooks
run: pre-commit run --all-files --color always run: pre-commit run --all-files --color always
- name: Install Poetry
run: |
pip install poetry
poetry self add poetry-plugin-export
- name: Install pip-audit - name: Install pip-audit
run: pip install pip-audit run: pip install pip-audit
- name: Run pip-audit - name: Audit dependencies (Poetry lockfile)
run: pip-audit run: |
poetry export -f requirements.txt --without-hashes \
| pip-audit -r /dev/stdin

View File

@@ -4,6 +4,10 @@
# filedust # filedust
<div align="center">
<img src="filedust.png" alt="filedust logo" width="256" />
</div>
**filedust** is a small, fast, and safe command-line tool that scans your filesystem for obvious junk — things like Python __pycache__ folders, build artifacts, editor backup files, and leftover temporary files — and cleans them up. **filedust** is a small, fast, and safe command-line tool that scans your filesystem for obvious junk — things like Python __pycache__ folders, build artifacts, editor backup files, and leftover temporary files — and cleans them up.
Think of it as “`autoremove` for files.” Think of it as “`autoremove` for files.”

BIN
filedust.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB