forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
51 lines (51 loc) · 863 Bytes
/
.flake8
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
[flake8]
exclude =
python/ray/core/generated/
doc/source/conf.py
python/ray/cloudpickle/
python/ray/thirdparty_files/
python/ray/_private/runtime_env/agent/thirdparty_files/
python/build/
python/.eggs/
python/ray/_private/thirdparty/*
python/ray/workflow/tests/mock_server.py
python/ray/serve/tests/test_config_files/syntax_error.py
max-line-length = 88
inline-quotes = "
ignore =
C408
C417
E121
E123
E126
E203
E226
E24
E704
W503
W504
W605
I
N
B001
B002
B003
B004
B005
B007
B008
B009
B010
B011
B012
B013
B014
B015
B016
B017
avoid-escape = no
# Error E731 is ignored because of the migration from YAPF to Black.
# See https://github.com/ray-project/ray/issues/21315 for more information.
per-file-ignores =
rllib/evaluation/worker_set.py:E731
rllib/evaluation/sampler.py:E731