added configs to get ready for setting black to allow longer line lengths w/ burnettk

This commit is contained in:
jasquat 2023-03-13 15:50:34 -04:00
parent 7e73ca240a
commit 3fe7c70b48
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions

View File

@ -12,9 +12,13 @@ repos:
# 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/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]
- id: check-added-large-files