Skip to content

Commit

Permalink
Add selected no-implicit-concat explainer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Jan 29, 2024
1 parent 240e4fa commit 434b637
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.cfg
Expand Up @@ -84,7 +84,12 @@ max-line-length=79
zip_ok = false

[flake8]
extend-select = B950,NIC001,NIC101
extend-select =
B950,
# NIC001 -- "Implicitly concatenated str literals on one line"
NIC001,
# NIC101 -- "Implicitly concatenated bytes literals on one line"
NIC101,
# TODO: don't disable D*, fix up issues instead
ignore = N801,N802,N803,E203,E226,E305,W504,E252,E301,E302,E501,E704,W503,W504,F811,D1,D4
max-line-length = 88
Expand Down

0 comments on commit 434b637

Please sign in to comment.