From daa8c9a6175d867c7b38b3b87234bcbe1bcd1d3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?The=20Vinh=20LUONG=20=28LU=CC=9BO=CC=9BNG=20The=CC=82?= =?UTF-8?q?=CC=81=20Vinh=29?= Date: Wed, 6 Mar 2024 17:46:03 -0800 Subject: [PATCH] update .Ruff.TOML linting configs --- .ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.ruff.toml b/.ruff.toml index 76f47c3b1..9c323ca09 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -81,6 +81,7 @@ ignore = [ "PERF401", # use a list comprehension to create a transformed list "PGH003", # use specific rule codes when ignoring type issues "PIE790", # unnecessary `pass` statement + "PLC2701", # private name import from external module "PTH100", # `os.path.abspath()` should be replaced by `Path.resolve()` "PTH103", # `os.makedirs()` should be replaced by `Path.mkdir(parents=True)` "PTH109", # `os.getcwd()` should be replaced by `Path.cwd()`