added configs to get ready for setting black to allow longer line lengths w/ burnettk
This commit is contained in:
parent
e196295c77
commit
bdb57cb696
|
@ -12,9 +12,13 @@ repos:
|
||||||
# exclude: ^migrations/
|
# exclude: ^migrations/
|
||||||
exclude: "/migrations/"
|
exclude: "/migrations/"
|
||||||
|
|
||||||
# otherwise it will not fix long lines if the long lines contain long strings
|
# --preview because otherwise it will not fix long lines if the long lines contain long strings
|
||||||
# https://github.com/psf/black/pull/1132
|
# https://github.com/psf/black/pull/1132
|
||||||
# https://github.com/psf/black/pull/1609
|
# https://github.com/psf/black/pull/1609
|
||||||
|
# --line-length because then we can avoid the fancy line wrapping in more instances and jason, kb, and elizabeth
|
||||||
|
# kind of prefer long lines rather than cutely-formatted sets of lines.
|
||||||
|
# TODO: enable when its safe to update the files
|
||||||
|
# args: [--preview, --line-length, "110"]
|
||||||
args: [--preview]
|
args: [--preview]
|
||||||
|
|
||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
|
|
Loading…
Reference in New Issue