Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
132 changes: 132 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so
*.dylib
*.dll

# Distribution / packaging
.Python
build/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
*.egg
pip-wheel-metadata/

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
pytest_cache/
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/

# Type checkers
.mypy_cache/
.dmypy.json
.pyre/
.pytype/

# Ruff / linters
.ruff_cache/

# Virtual environments
.venv/
venv/
env/
ENV/
env.bak/
venv.bak/

# Pyenv
.python-version

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv / pipenv / poetry
Pipfile.lock
poetry.lock

# PDM
.pdm.toml
.pdm-python
.pdm-build/

# Environments
.env
.env.*
*.env

# Logs
*.log

# SQLite
*.sqlite3

# VS Code
.vscode/

# PyCharm / IntelliJ
.idea/

# MacOS
.DS_Store

# Windows
Thumbs.db
ehthumbs.db

# Sphinx documentation
docs/_build/

# MkDocs
site/

# PyInstaller
*.manifest
*.spec

# Caches
*.cache

# mypy compiled cache
.mypyc/

# Coverage reports
coverage/

# Temporary files
*.tmp
*.swp
*.bak

# Data files (adjust depending on project)
data/
datasets/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/metacheck/utils/json_ld_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ def get_suggestion_text(pitfall_code: str) -> str:

# Warnings
"W001": "Add version numbers to your dependencies. This provides stability for users and allows reproducibility across different environments.",
"W002": "You need to align the version in your metadata file with your latest release tag. Automating this synchronization as part of your release process is highly recommended.",
"W002": "The data in the metadata file should be updated to be aligned with the date of the latest release. Automating this synchronization as part of your release process is highly recommended.",
"W003": "Make sure you are using the correct licenses. This avoids confusion about terms of use and ensures full transparency.",
"W004": "Include version numbers for each programming language used. Defining these helps ensure reproducibility and compatibility across systems.",
"W005": "Rewrite your dependencies as a proper list, with each item separated and preferably with their versions. This makes them easier to parse for metadata systems.",
Expand Down
Loading