Skip to content

Commit

Permalink
Update setup.cfg
Browse files Browse the repository at this point in the history
Signed-off-by: Sejal Verma <[email protected]>
  • Loading branch information
sejal-verma authored Nov 29, 2023
1 parent d5fe364 commit 37f9433
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@ target-version = 'py33'
ignore_missing_imports=True

[pylint]
enable = missing-function-docstring, missing-class-docstring, protected-access, duplicate-code, no-member,

max-line-length = 240
good-names-rgxs = ^[_a-z][_a-z0-9]?$ # allow for 1-character variable names

[pylint.MESSAGE CONTROL]
disable = all
enable = line-too-long, invalid-name, pointless-statement,
missing-function-docstring, missing-class-docstring, protected-access, duplicate-code, no-member,
missing-module-docstring, unused-argument, consider-using-f-string, super-with-arguments, too-few-public-methods,
redefined-builtin, line-too-long, too-many-arguments, redefined-outer-name, import-outside-toplevel,
useless-object-inheritance, unused-variable, unexpected-keyword-arg, raise-missing-from, too-many-locals,
unnecessary-dunder-call, wrong-import-position, too-many-public-methods, invalid-unary-operand-type,
attribute-defined-outside-init, unspecified-encoding, no-else-return, invalid-overridden-method, cyclic-import,
too-many-branches, dangerous-default-value, arguments-renamed, pointless-statement
max-line-length = 240
good-names-rgxs = ^[_a-z][_a-z0-9]?$ # allow for 1-character variable names

[pylint.MESSAGE CONTROL]
disable = all
enable = line-too-long, invalid-name, pointless-statement

0 comments on commit 37f9433

Please sign in to comment.