From c9ffee997e4d7b6b92ece9429501f31cbb0b6699 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Sat, 7 Feb 2026 09:44:19 -0500 Subject: [PATCH] Ignore repos --- .gitignore | 1 + pyproject.toml | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c05e777 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +repos diff --git a/pyproject.toml b/pyproject.toml index b41fd09..0695296 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,12 +24,14 @@ packages = ["src/mudlib"] [tool.ruff] src = ["src"] line-length = 88 +exclude = ["repos"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"] [tool.pyright] pythonVersion = "3.12" +exclude = ["repos"] [tool.pytest.ini_options] testpaths = ["tests"]