File size: 684 Bytes
fc0a183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
repos:
  - repo: https://github.com/asottile/reorder-python-imports.git
    rev: v3.8.3
    hooks:
      - id: reorder-python-imports
        name: Reorder Python imports
        types: [file, python]
  - repo: https://github.com/psf/black.git
    rev: 22.8.0
    hooks:
      - id: black
        additional_dependencies: ['click==8.0.4']
        args: [--line-length=120]
        types: [file, python]
  - repo: https://github.com/pre-commit/pre-commit-hooks.git
    rev: v4.3.0
    hooks:
      - id: check-byte-order-marker
        types: [file, python]
      - id: trailing-whitespace
        types: [file, python]
      - id: end-of-file-fixer
        types: [file, python]