Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-05-13 11:03:11 +0300
committerCampbell Barton <campbell@blender.org>2022-05-13 11:05:07 +0300
commit42d748be3425821400677db99a6e2c079d9e271c (patch)
tree70115af755ab47ebde15c433ce303f662e99bec1 /pyproject.toml
parent0d1b9eabf2e5a5ca5947981952f7aa63f55ecea8 (diff)
pyproject: re-enable line wrapping for autopep8
The problem noted in the configuration file no longer occurs, re-enabling line wrapping (E501).
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml5
1 files changed, 0 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 283e4c40db2..22d2d768d08 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -20,11 +20,6 @@ ignore = [
# Why disable? Re-ordering imports is disruptive and breaks some scripts
# that need to check if a module has already been loaded in the case of reloading.
"E402",
- # Info: Try to make lines fit within --max-line-length characters.
- # Why disable? Causes lines to be wrapped, where long lines have the trailing bracket moved to the end of the line.
- # If trailing commas were respected as they are by clang-format this might be acceptable.
- # Note that this doesn't disable all line wrapping.
- "E501",
# Info: Fix various deprecated code (via lib2to3)
# Why disable? Does nothing besides incorrectly adding a duplicate import,
# could be reported as a bug except this is likely to be removed soon, see: