Skip to content

Commit

Permalink
Dont allow unsued globals and allow fp (google#12190)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman authored Jul 9, 2024
1 parent 9df12da commit 2b950cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ function-naming-style=snake_case
good-names=i,
j,
k,
fp,
ex,
Run,
_
Expand Down Expand Up @@ -438,7 +439,7 @@ spelling-store-unknown-words=no
additional-builtins=

# Tells whether unused global variables should be treated as a violation.
allow-global-unused-variables=yes
allow-global-unused-variables=no

# List of strings which can identify a callback function by name. A callback
# name must start or end with one of those strings.
Expand Down

0 comments on commit 2b950cc

Please sign in to comment.