fix: resolve CI linting failures by adding ruff configuration
Some checks failed
CI / test (push) Has been cancelled
ErrorFix CLI CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 04:48:02 +00:00
parent d50ee94d06
commit 726a8e7c81

60
.gitignore vendored
View File

@@ -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/