From 2b950cc132051cf75c609047bda55fe46f93d9a4 Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Tue, 9 Jul 2024 12:26:06 -0400 Subject: [PATCH] Dont allow unsued globals and allow fp (#12190) --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 08212dcbe..6126fbc6c 100644 --- a/.pylintrc +++ b/.pylintrc @@ -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.