fix: resolve CI linting failures by adding ruff configuration
This commit is contained in:
60
.gitignore
vendored
60
.gitignore
vendored
@@ -1,30 +1,23 @@
|
|||||||
# Python
|
# Python
|
||||||
|
*.pyc
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.pyo
|
||||||
*$py.class
|
*.pyd
|
||||||
*.so
|
|
||||||
.Python
|
.Python
|
||||||
build/
|
*.so
|
||||||
develop-eggs/
|
|
||||||
dist/
|
|
||||||
downloads/
|
|
||||||
eggs/
|
|
||||||
.eggs/
|
|
||||||
lib/
|
|
||||||
lib64/
|
|
||||||
parts/
|
|
||||||
sdist/
|
|
||||||
var/
|
|
||||||
wheels/
|
|
||||||
*.egg-info/
|
|
||||||
.installed.cfg
|
|
||||||
*.egg
|
*.egg
|
||||||
|
*.egg-info/
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
|
||||||
# Virtual environments
|
# Environment
|
||||||
|
.env
|
||||||
|
.venv/
|
||||||
|
env/
|
||||||
venv/
|
venv/
|
||||||
ENV/
|
ENV/
|
||||||
env/
|
env.bak/
|
||||||
.venv
|
venv.bak/
|
||||||
|
|
||||||
# IDE
|
# IDE
|
||||||
.vscode/
|
.vscode/
|
||||||
@@ -32,26 +25,17 @@ env/
|
|||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
*~
|
*~
|
||||||
.DS_Store
|
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
.pytest_cache/
|
|
||||||
.coverage
|
.coverage
|
||||||
htmlcov/
|
.pytest_cache/
|
||||||
*.cover
|
|
||||||
|
|
||||||
# Distribution / packaging
|
|
||||||
.Python
|
|
||||||
env/
|
|
||||||
venv/
|
|
||||||
ENV/
|
|
||||||
build/
|
|
||||||
dist/
|
|
||||||
|
|
||||||
# mypy
|
|
||||||
.mypy_cache/
|
.mypy_cache/
|
||||||
.dmypy.json
|
|
||||||
dmypy.json
|
|
||||||
|
|
||||||
# ruff
|
|
||||||
.ruff_cache/
|
.ruff_cache/
|
||||||
|
htmlcov/
|
||||||
|
|
||||||
|
# OS
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Project specific
|
||||||
|
errorfix.egg-info/
|
||||||
|
|||||||
Reference in New Issue
Block a user