You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, it would be nice to have a few examples in the readme of workingpyproject.toml and setup.cfg files.
In particular, for pyproject.toml, it was not obvious that you have to use [tool.blue] instead of [blue], [tool.black], etc. However, for setup.cfg, you need to use [blue].
This basic pyproject.toml works for me:
[tool.blue]
line-length = 88
target-version = ['py37', 'py38']
include = '\.pyi?$'
color = true
extend-exclude = '''
This basic setup.cfg seems to work as well:
[blue]
line-length = 88
color = true
The text was updated successfully, but these errors were encountered:
Hi, it would be nice to have a few examples in the readme of working
pyproject.toml
andsetup.cfg
files.In particular, for
pyproject.toml
, it was not obvious that you have to use[tool.blue]
instead of[blue]
,[tool.black]
, etc. However, forsetup.cfg
, you need to use[blue]
.This basic
pyproject.toml
works for me:This basic
setup.cfg
seems to work as well:The text was updated successfully, but these errors were encountered: