๐Ÿ“ฆ gimbo / overlong-py-comment-blocks-check

๐Ÿ“„ .pre-commit-config.yaml ยท 31 lines
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---

exclude: '^testing/resources/.*$'

repos:

  - repo: https://github.com/pre-commit/pre-commit-hooks.git
    rev: master
    hooks:
      - id: flake8
        types: [file, python]
      - id: check-added-large-files
      - id: check-byte-order-marker
      - id: check-case-conflict
      - id: check-merge-conflict
      - id: check-symlinks
      - id: debug-statements
        types: [file, python]
      - id: detect-private-key
      - id: end-of-file-fixer
      - id: mixed-line-ending
      - id: requirements-txt-fixer
      - id: trailing-whitespace
        args: [--markdown-linebreak-ext=md]

  - repo: https://github.com/pre-commit/mirrors-isort
    rev: master
    hooks:
      - id: isort
        types: [file, python]