14 lines
482 B
YAML
14 lines
482 B
YAML
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.7.0 # Use the latest stable version of black
|
|
hooks:
|
|
- id: black
|
|
name: Black code formatter
|
|
args: ["--check"] # Only check formatting without modifying
|
|
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 6.1.0 # Use the latest stable version of flake8
|
|
hooks:
|
|
- id: flake8
|
|
name: Flake8 linter
|
|
args: ["--max-line-length=88", "--ignore=E203,W503"] # Match black's behavior |