Skip to content

Commit

Permalink
Fix pylintrc errors
Browse files Browse the repository at this point in the history
.pylintrc:1:0: E0015: Unrecognized option found: argument-name-hint, attr-name-hint, class-attribute-name-hint, class-name-hint, const-name-hint, function-name-hint, inlinevar-name-hint, method-name-hint, module-name-hint, variable-name-hint, no-space-check, optimize-ast, files-output (unrecognized-option)
.pylintrc:1:0: R0022: Useless option value for '--disable', 'bad-continuation' was removed from pylint, see pylint-dev/pylint#3571. (useless-option-value)
  • Loading branch information
KostyaEsmukov committed Nov 12, 2022
1 parent c5dde47 commit a411ad2
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -1,30 +1,20 @@
[BASIC]
argument-name-hint = [a-z_][a-z0-9_]{2,30}$
argument-rgx = [a-z_][a-z0-9_]{2,30}$
attr-name-hint = [a-z_][a-z0-9_]{2,30}$
attr-rgx = [a-z_][a-z0-9_]{2,30}$
bad-names = foo,bar,baz,toto,tutu,tata
class-attribute-name-hint = ([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
class-attribute-rgx = ([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
class-name-hint = [A-Z_][a-zA-Z0-9]+$
class-rgx = [A-Z_][a-zA-Z0-9]+$
const-name-hint = (([A-Z_][A-Z0-9_]*)|(__.*__))$
const-rgx = (([A-Z_][A-Z0-9_]*)|(__.*__))$
docstring-min-length = -1
function-name-hint = [a-z_][a-z0-9_]{2,30}$
function-rgx = [a-z_][a-z0-9_]{2,30}$
good-names = i,j,k,_,it
include-naming-hint = no
inlinevar-name-hint = [A-Za-z_][A-Za-z0-9_]*$
inlinevar-rgx = [A-Za-z_][A-Za-z0-9_]*$
method-name-hint = [a-z_][a-z0-9_]{2,30}$
method-rgx = [a-z_][a-z0-9_]{2,30}$
module-name-hint = (([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
module-rgx = (([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
name-group =
no-docstring-rgx = ^_
property-classes = abc.abstractproperty
variable-name-hint = [a-z_][a-z0-9_]{2,30}$
variable-rgx = [a-z_][a-z0-9_]{2,30}$

[CLASSES]
Expand Down Expand Up @@ -59,7 +49,6 @@ indent-after-paren = 4
indent-string = ' '
max-line-length = 88
max-module-lines = 1000
no-space-check = trailing-comma,dict-separator
single-line-if-stmt = no

[IMPORTS]
Expand All @@ -80,21 +69,18 @@ ignore = CVS
ignore-patterns =
jobs = 1
load-plugins =
optimize-ast = no
persistent = yes
unsafe-load-any-extension = no

[MESSAGES CONTROL]
confidence =
disable = I,
bad-continuation,

[MISCELLANEOUS]
notes = FIXME,XXX,TODO

[REPORTS]
evaluation = 10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
files-output = no
output-format = text
reports = yes

Expand Down

0 comments on commit a411ad2

Please sign in to comment.