From 48b3e3aaf35d93162aacc7444ceef61b4d53ad8f Mon Sep 17 00:00:00 2001 From: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Date: Mon, 24 Jul 2023 11:34:34 +0800 Subject: [PATCH] :sparkles: add git attributes (#2210) --- .gitattributes | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..e5022954 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +website/versioned_*/** linguist-documentation diff --git a/pyproject.toml b/pyproject.toml index c5fcdf95..3e74ad34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -94,7 +94,7 @@ extra_standard_library = ["typing_extensions"] [tool.ruff] select = ["E", "W", "F", "UP", "C", "T", "PYI", "PT", "Q"] -ignore = ["E402", "C901"] +ignore = ["E402", "C901", "UP037"] line-length = 88 target-version = "py38"