Skip to content

Commit

Permalink
Merge bad-names lists
Browse files Browse the repository at this point in the history
  • Loading branch information
dbieber committed Sep 20, 2024
1 parent 31455c7 commit f943035
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ additional-builtins=

[BASIC]

# List of builtins function names that should not be used, separated by a comma
bad-names=map,filter,apply,input,reduce

# Regular expression which should only match correct module names
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$

Expand Down Expand Up @@ -99,7 +96,7 @@ inlinevar-rgx=^[a-z][a-z0-9_]*$
good-names=i,j,k,ex,main,Run,_

# Bad variable names which should always be refused, separated by a comma
bad-names=foo,bar,baz,toto,tutu,tata
bad-names=map,filter,apply,input,reduce,foo,bar,baz,toto,tutu,tata

# Regular expression which should only match functions or classes name which do
# not require a docstring
Expand Down

0 comments on commit f943035

Please sign in to comment.