Dont allow unsued globals and allow fp (#12190)

This commit is contained in:
jonathanmetzman 2024-07-09 12:26:06 -04:00 committed by GitHub
parent 9df12dae76
commit 2b950cc132
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -247,6 +247,7 @@ function-naming-style=snake_case
good-names=i,
j,
k,
fp,
ex,
Run,
_
@ -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.