17 lines
635 B
YAML
17 lines
635 B
YAML
repos:
|
|
# Using this mirror lets us use mypyc-compiled black, which is about 2x faster
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
rev: 23.12.1
|
|
hooks:
|
|
- id: black
|
|
# It is recommended to specify the latest version of Python
|
|
# supported by your project here, or alternatively use
|
|
# pre-commit's default_language_version, see
|
|
# https://pre-commit.com/#top_level-default_language_version
|
|
language_version: python3.11
|
|
|
|
- repo: https://github.com/fsouza/pre-commit-pyre-check
|
|
rev: '199dc59' # Use the sha / tag you want to point at
|
|
hooks:
|
|
- id: pyre-check
|