forked from OpenMined/PySyft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
151 lines (151 loc) · 4.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
- id: check-ast
exclude: ^(packages/grid/ansible/)
always_run: true
- id: trailing-whitespace
always_run: true
exclude: ^(docs/)
- id: check-docstring-first
always_run: true
exclude: ^(packages/grid/ansible/)
- id: check-json
always_run: true
- id: check-added-large-files
always_run: true
exclude: ^(notebooks/trade_demo/datasets)
- id: check-yaml
always_run: true
- id: check-merge-conflict
always_run: true
args: ["--assume-in-merge"]
- id: check-executables-have-shebangs
always_run: true
exclude: ^(packages/grid/ansible/)
- id: debug-statements
always_run: true
exclude: ^(packages/grid/ansible/)
- id: name-tests-test
always_run: true
exclude: ^(packages/grid/backend/grid/tests/utils/)
- id: requirements-txt-fixer
always_run: true
- id: mixed-line-ending
args: ["--fix=lf"]
exclude: '\.bat|\.csv|\.ps1$'
- repo: https://github.com/MarcoGorelli/absolufy-imports
rev: v0.3.1
hooks:
- id: absolufy-imports
args: ["--never", "--application-directories=packages/syft/src"]
files: ^packages/syft/src
exclude: |
(?x)^(
packages/syft/examples/.*|
packages/syft/src/syft/proto.*|
packages/syft/tests/syft/lib/python.*|
packages/grid.*|
packages/hagrid.*|
packages/syft/src/syft/federated/model_serialization/protos.py
)$
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
always_run: true
name: isort (python)
args: ["--settings-path .isort.cfg"]
- repo: https://github.com/psf/black
rev: 22.1.0
hooks:
- id: black
always_run: true
exclude: ^(packages/syft/src/syft/proto)
- repo: https://gitlab.com/pycqa/flake8
rev: 4.0.1
hooks:
- id: flake8
always_run: true
args: ["--config=packages/syft/setup.cfg"]
additional_dependencies:
- flake8-bugbear
exclude: ^(packages/syft/src/syft/proto|packages/grid/ansible/)
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
hooks:
- id: mypy
name: mypy-hagrid
always_run: true
files: ^packages/hagrid
exclude: ^(packages/syft|packages/grid)
args: [
"--ignore-missing-imports",
"--scripts-are-modules",
"--disallow-incomplete-defs",
"--no-implicit-optional",
"--warn-unused-ignores",
"--warn-redundant-casts",
"--strict-equality",
"--warn-unreachable",
# "--disallow-untyped-decorators",
"--disallow-untyped-defs",
"--disallow-untyped-calls",
"--namespace-packages",
"--install-types",
"--non-interactive",
]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
hooks:
- id: mypy
name: mypy-grid
always_run: true
files: ^packages/grid
exclude: ^(packages/grid/ansible|packages/grid/backend/app/alembic/versions)
args: [
"--ignore-missing-imports",
"--scripts-are-modules",
"--disallow-incomplete-defs",
"--no-implicit-optional",
# "--warn-unused-ignores",
"--warn-redundant-casts",
"--strict-equality",
"--warn-unreachable",
# "--disallow-untyped-decorators",
"--disallow-untyped-defs",
"--disallow-untyped-calls",
"--namespace-packages",
"--install-types",
"--non-interactive",
]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
hooks:
- id: mypy
name: mypy-syft
files: ^packages/syft
exclude: |
(?x)^(
packages/syft/examples/.*|
packages/syft/tests/.*|
packages/syft/src/syft/proto.*|
packages/syft/tests/syft/lib/python.*
)$
args: [
"--ignore-missing-imports",
"--scripts-are-modules",
"--disallow-incomplete-defs",
"--no-implicit-optional",
# "--warn-unused-ignores",
"--warn-redundant-casts",
"--strict-equality",
"--warn-unreachable",
# "--disallow-untyped-decorators",
"--disallow-untyped-defs",
"--disallow-untyped-calls",
"--no-warn-unused-ignores",
"--install-types",
"--non-interactive",
]