From bb021a00d951fbc85803d1aac3c7e6e4fd3bd555 Mon Sep 17 00:00:00 2001 From: Jon Date: Fri, 14 Feb 2025 23:20:10 +0930 Subject: [PATCH] feat(development): lint for un-used imports ref: #570 --- pyproject.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 59760201..f068e805 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,3 +2,15 @@ disable = [ "all" ] +enable = [ + "variables" +] + +source-roots = [ + "app/" +] + + +[tool.pylint.variables] +allow-global-unused-variables = true +init-import = true \ No newline at end of file