[lint]
# Equivalent to the former flake8 plugins:
#   flake8-docstrings   → D  (pydocstyle)
#   flake8-import-order → I  (isort)
#   flake8-import-single→ E401 (no multiple imports per line)
#   flake8-quotes       → Q  (quote style)
select = ["E", "F", "W", "D", "I", "Q"]

[lint.pydocstyle]
convention = "google"

[lint.flake8-quotes]
inline-quotes = "single"
