ruff.toml 218 B

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