diff --git a/pyproject.toml b/pyproject.toml index 9f87b23a..2c458b9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -185,7 +185,7 @@ ignore = ["CPY", "FIX002", "COM812"] "N", # pep8-naming "TD", # flake8-todo "COM812", # flake8-commas: missing-trailing-comma - "PLC2701", # pylint/C: import-private-name + "PLC2701", # pylint/convention: import-private-name ] [tool.ruff.lint.flake8-builtins] diff --git a/src/numpy-stubs/.ruff.toml b/src/numpy-stubs/.ruff.toml index 9b35118f..ffbbc2b6 100644 --- a/src/numpy-stubs/.ruff.toml +++ b/src/numpy-stubs/.ruff.toml @@ -5,6 +5,6 @@ line-length = 120 extend-ignore = [ "A", # flake8-builtins "ANN401", # flake8-annotations: any-type - "SLF001", # flake8-self: private-member-access - "PLR2044", # pylint/R: empty-comment + "SLF001", # flake8-self: private-member-access + "PLR2044", # pylint/R: empty-comment ] diff --git a/tool/.ruff.toml b/tool/.ruff.toml index 069beaa6..e20c4cf6 100644 --- a/tool/.ruff.toml +++ b/tool/.ruff.toml @@ -3,12 +3,12 @@ line-length = 88 [lint] extend-ignore = [ - "TRY003", # tryceratops: raise-vanilla-args - "TD003", # flake8-todos: missing-todo-link - "S101", # flake8-bandit: assert - "S404", # flake8-bandit: suspicious-subprocess-import - "S603", # flake8-bandit: subprocess-without-shell-equals-true + "TRY003", # tryceratops: raise-vanilla-args + "TD003", # flake8-todos: missing-todo-link + "S101", # flake8-bandit: assert + "S404", # flake8-bandit: suspicious-subprocess-import + "S603", # flake8-bandit: subprocess-without-shell-equals-true "EM", # flake8-errmsg - "T201", # flake8-print: print + "T201", # flake8-print: print "PLR2004", # pylint/refactor: magic-value-comparison ]