ruff.toml 258 B

1234567891011121314151617181920212223
  1. exclude = [
  2. "agenthub/monologue_agent/regression/",
  3. ]
  4. [lint]
  5. select = [
  6. "E",
  7. "W",
  8. "F",
  9. "I",
  10. "Q",
  11. ]
  12. ignore = [
  13. "E501",
  14. ]
  15. [lint.flake8-quotes]
  16. docstring-quotes = "double"
  17. inline-quotes = "single"
  18. [format]
  19. quote-style = "single"