14 lines
448 B
YAML
14 lines
448 B
YAML
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.7.0 # Use the latest stable release
|
|
hooks:
|
|
- id: black
|
|
args: ["--check"]
|
|
pass_filenames: false # Ensures it lints every file, even if staged differently
|
|
always_run: true # Always runs regardless of file changes
|
|
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 6.1.0 # Use the latest stable release
|
|
hooks:
|
|
- id: flake8
|
|
args: [] |