-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.pre-commit-config.yaml
56 lines (52 loc) · 1.43 KB
/
.pre-commit-config.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
repos:
- repo: https://github.com/econchick/interrogate
rev: 1.5.0
hooks:
- id: interrogate
files: "bucky/"
verbose: true
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
- id: check-toml
- id: check-yaml
args: ["--unsafe"]
- id: debug-statements
- id: check-merge-conflict
- id: end-of-file-fixer
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1
hooks:
- id: isort
- repo: local
hooks:
- id: flakehell
name: flakehell
description: "`Flakehell` it's a Flake8 wrapper to make it cools."
entry: flakehell
args: [lint, ]
language: python
types: [python]
require_serial: true
additional_dependencies: [
"flake8==3.9.0",
"flakehell>=0.9.0",
"flake8-annotations>=2.7.0",
"flake8-bandit>=2.1.2",
"flake8-blind-except>=0.2.0",
"flake8-bugbear>=22.1.11",
"flake8-builtins>=1.5.3",
"flake8-commas>=2.1.0",
"flake8-comprehensions>=3.8.0",
"flake8-logging-format>=0.6.0",
"flake8-print>=4.0.0",
"flake8-rst-docstrings>=0.2.5",
"flake8-simplify>=0.15.1",
"darglint>=1.8.1",
"pylint>=2.12.2",
"bandit<=1.7.2",
]