diff --git a/ruff/.config/ruff/pyproject.toml b/ruff/.config/ruff/pyproject.toml deleted file mode 100644 index 8d38659..0000000 --- a/ruff/.config/ruff/pyproject.toml +++ /dev/null @@ -1,6 +0,0 @@ -[tool.ruff] - -select = ["E", "F", "I", "W", "Q"] - -# Never enforce `E501` (line length violations). -ignore = ["E501"] diff --git a/ruff/.config/ruff/ruff.toml b/ruff/.config/ruff/ruff.toml new file mode 100644 index 0000000..651b030 --- /dev/null +++ b/ruff/.config/ruff/ruff.toml @@ -0,0 +1,9 @@ +[lint] +ignore = ["E402", "E501"] +select = [ + "E", # pycodestyle + "W", # pycodestyle + "F", # Pyflakes + "I", # isort + "Q", # flake8-quotes +]