Skip to content

Commit 687c548

Browse files
author
miranov25
committed
Add .pylintrc to suppress non-functional pylint warningsRetry
1 parent 6ebf223 commit 687c548

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

UTILS/dfextensions/.pylintrc

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[MESSAGES CONTROL]
2+
# Disable style warnings that don't affect functionality
3+
disable=
4+
line-too-long,
5+
bad-indentation,
6+
fixme,
7+
logging-fstring-interpolation,
8+
too-many-arguments,
9+
too-many-positional-arguments,
10+
too-many-locals,
11+
too-many-branches,
12+
too-many-statements,
13+
broad-exception-caught,
14+
invalid-name,
15+
missing-module-docstring,
16+
missing-class-docstring,
17+
missing-function-docstring,
18+
reimported,
19+
import-outside-toplevel,
20+
redefined-outer-name,
21+
superfluous-parens
22+
23+
[FORMAT]
24+
max-line-length=120
25+
26+
[BASIC]
27+
good-names=i,j,k,ex,Run,_,X,y,df,np,dfGB

0 commit comments

Comments
 (0)