ruff.toml 339 B

123456789101112131415161718192021222324252627282930
  1. exclude = [
  2. "agenthub/monologue_agent/regression/",
  3. ]
  4. [lint]
  5. select = [
  6. "E",
  7. "W",
  8. "F",
  9. "I",
  10. "Q",
  11. "B",
  12. ]
  13. ignore = [
  14. "E501",
  15. "B003",
  16. "B007",
  17. "B009",
  18. "B010",
  19. "B904",
  20. "B018",
  21. ]
  22. [lint.flake8-quotes]
  23. docstring-quotes = "double"
  24. inline-quotes = "single"
  25. [format]
  26. quote-style = "single"