spotify_actions/.pre-commit-config.yaml

23 lines
515 B
YAML
Raw Normal View History

2021-07-03 17:48:53 -04:00
repos:
2021-07-03 17:48:18 -04:00
- repo: https://github.com/psf/black
rev: 21.6b0
hooks:
- id: black
args: ["--line-length=120"]
2021-07-03 17:48:18 -04:00
- repo: https://github.com/pycqa/isort
rev: 5.9.1
hooks:
- id: isort
2021-07-03 19:29:50 -04:00
args: ["--profile black"]
2021-07-03 17:41:12 -04:00
- repo: https://github.com/pycqa/pylint
rev: v2.9.3
hooks:
2021-07-03 17:48:18 -04:00
- id: pylint
2021-07-03 19:29:50 -04:00
args: ["--ignore-imports=yes"]
2021-07-03 17:48:18 -04:00
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
hooks:
- id: mypy
args: ["--strict", "--ignore-missing-imports"]
2021-07-03 19:29:50 -04:00
additional_dependencies: ["types-PyYAML"]