bronzeburner/.pre-commit-config.yaml
Darryl Nixon 747ad486ee * feat(.pre-commit-config.yaml): add/increase maxkb argument to check-added-large-files
* docs(README.md): update InfluxDB version requirement and add execution image
* style(scan.py): update log message format
* feat(img): add bb_execution.png image file
2023-09-06 20:09:58 -07:00

29 lines
753 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
args: ['--maxkb=1024']
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.9.0
hooks:
- id: reorder-python-imports
args: [--application-directories, '.:bronzeburner', --py39-plus]
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
language_version: python3.10
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
hooks:
- id: bandit
args: ["-c", "pyproject.toml"]
additional_dependencies: ["bandit[toml]"]
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8