File: .pre-commit-config.yaml

package info (click to toggle)
python-iniconfig 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: python: 466; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 540 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
repos:
-   repo: https://github.com/asottile/pyupgrade
    rev: v3.3.1
    hooks:
    -   id: pyupgrade
        args: [--py38-plus]
- repo: https://github.com/tox-dev/pyproject-fmt
  rev: "0.4.1"
  hooks:
    - id: pyproject-fmt

- repo: https://github.com/psf/black
  rev: 22.12.0
  hooks:
      - id: black
        language_version: python3
-   repo: https://github.com/pre-commit/mirrors-mypy
    rev: 'v0.991' 
    hooks:
    -   id: mypy
        args: []
        additional_dependencies:
          - "pytest==7.2.0"
          - "tomli"