summaryrefslogtreecommitdiff
path: root/python/ruff.toml
diff options
context:
space:
mode:
Diffstat (limited to 'python/ruff.toml')
-rw-r--r--python/ruff.toml62
1 files changed, 0 insertions, 62 deletions
diff --git a/python/ruff.toml b/python/ruff.toml
deleted file mode 100644
index a6bedc2..0000000
--- a/python/ruff.toml
+++ /dev/null
@@ -1,62 +0,0 @@
-target-version = "py311"
-
-exclude = [
- ".bzr",
- ".direnv",
- ".eggs",
- ".git",
- ".git-rewrite",
- ".hg",
- ".ipynb_checkpoints",
- ".mypy_cache",
- ".nox",
- ".pants.d",
- ".pyenv",
- ".pytest_cache",
- ".pytype",
- ".ruff_cache",
- ".svn",
- ".tox",
- ".venv",
- ".vscode",
- "__pypackages__",
- "_build",
- "buck-out",
- "build",
- "dist",
- "node_modules",
- "site-packages",
- "venv",
-]
-
-line-length = 100
-indent-width = 4
-
-[lint]
-select = ["ALL"]
-ignore = ["D", "ANN101", "ERA", "ANN"]
-
-# Allow fix for all enabled rules (when `--fix`) is provided.
-fixable = ["ALL"]
-unfixable = []
-
-# Allow unused variables when underscore-prefixed.
-dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
-
-[format]
-quote-style = "double"
-indent-style = "space"
-
-# Like Black, respect magic trailing commas.
-skip-magic-trailing-comma = false
-
-# Like Black, automatically detect the appropriate line ending.
-line-ending = "auto"
-
-# Enable auto-formatting of code examples in docstrings. Markdown,
-# reStructuredText code/literal blocks and doctests are all supported.
-docstring-code-format = false
-
-# Set the line length limit used when formatting code snippets in
-# docstrings.
-docstring-code-line-length = "dynamic"