forked from delphix/delphixpy-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
48 lines (46 loc) · 1.31 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/psf/black
rev: 22.10.0
hooks:
- id: black
args:
- --fast
- repo: https://github.com/timothycrosley/isort
rev: 4.3.21
hooks:
- id: isort
- repo: local
hooks:
- id: futurize
name: futurize
entry: futurize
language: system
types: [python]
args:
- "-w"
- "-n"
- "-flib2to3.fixes.fix_apply"
- "-flib2to3.fixes.fix_except"
- "-flib2to3.fixes.fix_exitfunc"
- "-flib2to3.fixes.fix_funcattrs"
- "-flib2to3.fixes.fix_has_key"
- "-flib2to3.fixes.fix_idioms"
- "-flib2to3.fixes.fix_intern"
- "-flib2to3.fixes.fix_isinstance"
- "-flib2to3.fixes.fix_methodattrs"
- "-flib2to3.fixes.fix_ne"
- "-flib2to3.fixes.fix_numliterals"
- "-flib2to3.fixes.fix_paren"
- "-flib2to3.fixes.fix_reduce"
- "-flib2to3.fixes.fix_renames"
- "-flib2to3.fixes.fix_repr"
- "-flib2to3.fixes.fix_standarderror"
- "-flib2to3.fixes.fix_sys_exc"
- "-flib2to3.fixes.fix_throw"
- "-flib2to3.fixes.fix_tuple_params"
- "-flib2to3.fixes.fix_types"
- "-flib2to3.fixes.fix_ws_comma"
- "-flib2to3.fixes.fix_xreadlines"
- "-flibfuturize.fixes.fix_next_call"
- "-flibfuturize.fixes.fix_print_with_import"
- "-flibfuturize.fixes.fix_raise"