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()`