.flake8 739 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [flake8]
  2. exclude =
  3. python/ray/core/generated/
  4. doc/source/conf.py
  5. python/ray/cloudpickle/
  6. python/ray/thirdparty_files/
  7. python/build/
  8. python/.eggs/
  9. python/ray/_private/thirdparty/*
  10. python/ray/workflow/tests/mock_server.py
  11. max-line-length = 88
  12. inline-quotes = "
  13. ignore =
  14. C408
  15. E121
  16. E123
  17. E126
  18. E203
  19. E226
  20. E24
  21. E704
  22. W503
  23. W504
  24. W605
  25. I
  26. N
  27. B001
  28. B002
  29. B003
  30. B004
  31. B005
  32. B007
  33. B008
  34. B009
  35. B010
  36. B011
  37. B012
  38. B013
  39. B014
  40. B015
  41. B016
  42. B017
  43. avoid-escape = no
  44. # Error E731 is ignored because of the migration from YAPF to Black.
  45. # See https://github.com/ray-project/ray/issues/21315 for more information.
  46. per-file-ignores =
  47. rllib/evaluation/worker_set.py:E731
  48. rllib/evaluation/sampler.py:E731