Update README to reflect fork (#2)

This commit is contained in:
Charlie Marsh
2024-09-29 19:22:10 -04:00
committed by GitHub
parent 491342200c
commit 7388145ba9
2 changed files with 51 additions and 52 deletions
+6 -40
View File
@@ -1,46 +1,12 @@
[tool.ruff]
select = ["A", "ANN", "B", "C90", "D", "E", "F", "I", "N", "COM", "DTZ", "PD", "RUF", "TID", "UP", "W"]
ignore = ["D203", "D212"]
fixable = ["I", "RUF100"]
unfixable = []
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
line-length = 88
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py311"
[tool.ruff.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[tool.ruff.lint]
extend-select = ["B", "UP"]
fixable = ["I", "RUF100"]
unfixable = []
[tool.pyright]
typeCheckingMode = "lazy"