Skip to content

Commit ae474c6

Browse files
authored
Disable pylint's line-length checking (#2735)
Already checked by flakeheaven/pycodestyle.
1 parent 893546c commit ae474c6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,8 @@ max-module-lines=2000
133133
# --enable=similarities". If you want to run only the classes checker, but have
134134
# no Warning level messages displayed, use "--disable=all --enable=classes
135135
# --disable=W".
136-
disable=["duplicate-code", "import-error"]
136+
disable=[
137+
"duplicate-code",
138+
"import-error",
139+
"line-too-long", # Already checked by flakeheaven/pycodestyle
140+
]

0 commit comments

Comments
 (0)