File: .pre-commit-config.yaml

package info (click to toggle)
python-packaging 20.9-2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 720 kB
  • sloc: python: 5,404; makefile: 127
file content (37 lines) | stat: -rw-r--r-- 939 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
25
26
27
28
29
30
31
32
33
34
35
36
37
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v2.3.0
    hooks:
      - id: check-toml
      - id: check-yaml
      - id: end-of-file-fixer
      - id: trailing-whitespace

  - repo: https://github.com/pre-commit/mirrors-mypy
    rev: v0.790
    hooks:
      - id: mypy
        exclude: '^(docs|tasks|tests)|setup\.py'
        args: []
      - id: mypy
        name: mypy for Python 2
        exclude: '^(docs|tasks|tests)|setup\.py|noxfile\.py'
        args: ["--py2"]

  - repo: https://github.com/psf/black
    rev: 19.3b0
    hooks:
      - id: black

  - repo: https://github.com/PyCQA/isort
    rev: 5.6.4
    hooks:
      - id: isort

  - repo: https://gitlab.com/PyCQA/flake8
    rev: "3.7.8"
    hooks:
      - id: flake8
        additional_dependencies: ["pep8-naming"]
        # Ignore all format-related checks as Black takes care of those.
        args: ["--ignore", "E2,W5", "--select", "E,W,F,N"]