forked from wandb/wandb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8-base
48 lines (45 loc) · 1 KB
/
.flake8-base
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
[flake8]
min_python_version = 3.6.0
exclude =
.tox/
.git/
__pycache__
build/
dist/
codemod/
*.pyc
*.egg-info
.cache
.eggs
./tests/conftest.py
./tests/assets/fixtures/train.py
./tests/utils/
./tests/logs/
./tests/unit_tests/
./tests/functional_tests/t0_main/metaflow/
./tests/functional_tests/t0_main/fastai/t1_v1.py
./wandb/__init__.py
./wandb/wandb_torch.py
./wandb/bin
./wandb/data/
./wandb/errors/
./wandb/old/
./wandb/proto/
./wandb/proto_check/
./wandb/env.py
./wandb/integration/magic.py
./wandb/integration/keras/
./wandb/integration/metaflow/
./wandb/sdk/internal/internal_api.py
./wandb/keras/
./wandb/superagent/
./wandb/plots/
./wandb/sklearn/
./wandb/viz.py
./wandb/vendor/
*/wandb/run-*/files/code/
*/wandb/offline-run-*/files/code/
per-file-ignores =
wandb/cli/cli.py:C901,I202
wandb/wandb_controller.py:N803,N806
wandb/filesync/step_checksum.py:B023