1234567891011121314151617 |
- [tool.black]
- line-length = 120
- indent-size = 2
- skip-string-normalization = true
- [tool.isort]
- profile = "black"
- line_length = 120
- indent = " "
- [tool.pylint.format]
- indent-string = ' '
- max-line-length = 120
- [tool.autopep8]
- max_line_length = 120
- indent_size = 2
|