forked from OpenMined/PySyft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
161 lines (155 loc) · 5.03 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
152
153
154
155
156
157
158
159
160
161
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-ast
exclude: ^(packages/grid/ansible/)
always_run: true
- id: trailing-whitespace
always_run: true
exclude: ^(docs/|.+\.md|.bumpversion.cfg)
- 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: ^(packages/syft/src/syft/cache/constant2epsilon_1200k.npy|packages/grid/backend/wheels/.*|packages/syft/docs/img/header.png|packages/syft/docs/img/terminalizer.gif|notebooks/padawan)
- id: check-yaml
always_run: true
exclude: ^(packages/grid/k8s/rendered/)
- 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"]
always_run: true
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
name: isort
args: [".", "--settings-path .isort.cfg"]
always_run: true
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
args: ["."]
always_run: true
# exclude: ^(packages/syft/src/syft/proto)
files: "^packages/syft(?!(.*_pb2\\.py$)).*\\.py"
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
hooks:
- id: flake8
args: ["--config=packages/syft/setup.cfg"]
always_run: true
additional_dependencies:
- flake8-bugbear
files: "^packages/syft(?!(/tests/|.*_pb2\\.py$)).*\\.py"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
hooks:
- id: mypy
name: mypy-hagrid
always_run: true
files: ^packages/hagrid
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",
"--config-file=tox.ini",
]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
hooks:
- id: mypy
name: mypy-grid
always_run: true
files: ^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",
"--config-file=tox.ini",
]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
hooks:
- id: mypy
name: mypy-syft
always_run: true
files: "^packages/syft(?!(/tests/|.*_pb2\\.py$)).*\\.py"
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",
"--config-file=tox.ini",
]
# - repo: meta
# hooks:
# - id: identity
# always_run: true
# files: "^packages/syft(?!(/tests/|.*_pb2\\.py$)).*\\.py"