pyproject.toml 263 B

1234567891011121314151617
  1. [tool.black]
  2. line-length = 120
  3. indent-size = 2
  4. skip-string-normalization = true
  5. [tool.isort]
  6. profile = "black"
  7. line_length = 120
  8. indent = " "
  9. [tool.pylint.format]
  10. indent-string = ' '
  11. max-line-length = 120
  12. [tool.autopep8]
  13. max_line_length = 120
  14. indent_size = 2