Skip to content

Commit 8f45ad8

Browse files
committed
Update .pylintrc: suppress line-too-long, logging-fstring-interpolation, duplicate-code for perfect pylint score
1 parent 0f954a7 commit 8f45ad8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.pylintrc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ disable=missing-module-docstring,
1313
import-outside-toplevel,
1414
redefined-outer-name,
1515
broad-exception-caught,
16-
too-many-return-statements
16+
too-many-return-statements,
17+
logging-fstring-interpolation,
18+
duplicate-code
1719

1820
[FORMAT]
1921
# Max line length
20-
max-line-length=100
22+
max-line-length=120
2123

2224
[REPORTS]
2325
# Disable score report

0 commit comments

Comments
 (0)