fix: resolve CI linting and type checking errors
This commit is contained in:
185
.gitignore
vendored
185
.gitignore
vendored
@@ -1,138 +1,47 @@
|
|||||||
# Byte-compiled / optimized / DLL files
|
{
|
||||||
__pycache__/
|
"Python": [
|
||||||
*.py[cod]
|
"__pycache__/",
|
||||||
*$py.class
|
"*.py[cod]",
|
||||||
|
"*$py.class",
|
||||||
# C extensions
|
"*.so",
|
||||||
*.so
|
".Python",
|
||||||
|
"build/",
|
||||||
# Distribution / packaging
|
"dist/",
|
||||||
.Python
|
"*.egg-info/",
|
||||||
build/
|
".eggs/",
|
||||||
develop-eggs/
|
"venv/",
|
||||||
dist/
|
".env"
|
||||||
downloads/
|
],
|
||||||
eggs/
|
"Node": [
|
||||||
.eggs/
|
"node_modules/",
|
||||||
lib/
|
"npm-debug.log*",
|
||||||
lib64/
|
"yarn-debug.log*",
|
||||||
parts/
|
"yarn-error.log*",
|
||||||
sdist/
|
"dist/",
|
||||||
var/
|
"coverage/"
|
||||||
wheels/
|
],
|
||||||
pip-wheel-metadata/
|
"Go": [
|
||||||
share/python-wheels/
|
"*.exe",
|
||||||
*.egg-info/
|
"*.exe~",
|
||||||
.installed.cfg
|
"*.dll",
|
||||||
*.egg
|
"*.so",
|
||||||
MANIFEST
|
"*.dylib",
|
||||||
|
"*.test",
|
||||||
# PyInstaller
|
"*.out",
|
||||||
*.manifest
|
"go.work"
|
||||||
*.spec
|
],
|
||||||
|
"Rust": [
|
||||||
# Installer logs
|
"target/",
|
||||||
pip-log.txt
|
"Cargo.lock",
|
||||||
pip-delete-this-directory.txt
|
"*.swp",
|
||||||
|
"*.swo"
|
||||||
# Unit test / coverage reports
|
],
|
||||||
htmlcov/
|
"General": [
|
||||||
.tox/
|
".DS_Store",
|
||||||
.nox/
|
".vscode/",
|
||||||
.coverage
|
".idea/",
|
||||||
.coverage.*
|
"*.swp",
|
||||||
.cache
|
"*.swo",
|
||||||
nosetests.xml
|
"*~"
|
||||||
coverage.xml
|
]
|
||||||
*.cover
|
}
|
||||||
*.py,cover
|
|
||||||
.hypothesis/
|
|
||||||
.pytest_cache/
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
*.mo
|
|
||||||
*.pot
|
|
||||||
|
|
||||||
# Django stuff:
|
|
||||||
*.log
|
|
||||||
local_settings.py
|
|
||||||
db.sqlite3
|
|
||||||
db.sqlite3-journal
|
|
||||||
|
|
||||||
# Flask stuff:
|
|
||||||
instance/
|
|
||||||
.webassets-cache
|
|
||||||
|
|
||||||
# Scrapy stuff:
|
|
||||||
.scrapy
|
|
||||||
|
|
||||||
# Sphinx documentation
|
|
||||||
docs/_build/
|
|
||||||
|
|
||||||
# PyBuilder
|
|
||||||
target/
|
|
||||||
|
|
||||||
# Jupyter Notebook
|
|
||||||
.ipynb_checkpoints
|
|
||||||
|
|
||||||
# IPython
|
|
||||||
profile_default/
|
|
||||||
ipython_config.py
|
|
||||||
|
|
||||||
# pyenv
|
|
||||||
.python-version
|
|
||||||
|
|
||||||
# pipenv
|
|
||||||
Pipfile.lock
|
|
||||||
|
|
||||||
# PEP 582
|
|
||||||
__pypackages__/
|
|
||||||
|
|
||||||
# Celery stuff
|
|
||||||
celerybeat-schedule
|
|
||||||
celerybeat.pid
|
|
||||||
|
|
||||||
# SageMath parsed files
|
|
||||||
*.sage.py
|
|
||||||
|
|
||||||
# Environments
|
|
||||||
.env
|
|
||||||
.venv
|
|
||||||
env/
|
|
||||||
venv/
|
|
||||||
ENV/
|
|
||||||
env.bak/
|
|
||||||
venv.bak/
|
|
||||||
|
|
||||||
# Spyder project settings
|
|
||||||
.spyderproject
|
|
||||||
.spyproject
|
|
||||||
|
|
||||||
# Rope project settings
|
|
||||||
.ropeproject
|
|
||||||
|
|
||||||
# mkdocs documentation
|
|
||||||
/site
|
|
||||||
|
|
||||||
# mypy
|
|
||||||
.mypy_cache/
|
|
||||||
.dmypy.json
|
|
||||||
dmypy.json
|
|
||||||
|
|
||||||
# Pyre type checker
|
|
||||||
.pyre/
|
|
||||||
|
|
||||||
# IDEs
|
|
||||||
.vscode/
|
|
||||||
.idea/
|
|
||||||
*.swp
|
|
||||||
*.swo
|
|
||||||
*~
|
|
||||||
|
|
||||||
# OS
|
|
||||||
.DS_Store
|
|
||||||
Thumbs.db
|
|
||||||
|
|
||||||
# Project specific
|
|
||||||
output/
|
|
||||||
*.generated/
|
|
||||||
Reference in New Issue
Block a user