-
Notifications
You must be signed in to change notification settings - Fork 11
/
.pre-commit-config.yaml
48 lines (48 loc) · 1.56 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
repos:
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.942
hooks:
- id: mypy
exclude: flipper_thrift|flipper_client\.egg_info|build|.circleci
args:
- --follow-imports=silent
- --ignore-missing-imports
- repo: https://github.com/ambv/black
rev: 22.3.0
hooks:
- id: black
exclude: flipper_thrift|flipper_client.egg_info|build|.circleci
- repo: https://github.com/asottile/seed-isort-config
rev: v2.2.0
hooks:
- id: seed-isort-config
exclude: flipper_thrift|flipper_client\.egg_info|build|.circleci
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1
hooks:
- id: isort
exclude: flipper_thrift|flipper_client\.egg_info|build|.circleci
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.1.13
hooks:
- id: insert-license
files: flipper|flipper_thrift
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
exclude: flipper_thrift|flipper_client\.egg_info|build|.circleci
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
- id: end-of-file-fixer
exclude: flipper_thrift|flipper_client\.egg_info|build|.circleci
- id: trailing-whitespace
exclude: flipper_thrift|flipper_client\.egg_info|build|.circleci
- id: check-ast
exclude: flipper_thrift|flipper_client\.egg_info|build|.circleci
- repo: https://github.com/PyCQA/bandit
rev: 1.7.4
hooks:
- id: bandit
files: ^flipper$