From dfe4ba7c6aeba9fb0f459f0fc56e339ba5b16f97 Mon Sep 17 00:00:00 2001 From: Arjun Bingly Date: Sat, 23 Mar 2024 16:20:16 -0400 Subject: [PATCH] config changes --- .gitignore | 13 +++++++++++++ pyproject.toml | 1 + 2 files changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 31270dd..911ec72 100644 --- a/.gitignore +++ b/.gitignore @@ -162,7 +162,20 @@ cython_debug/ # MacOS *.DS_Store **.env + +# LLM Modesl **.gguf + .idea/ **/others + +# Data folder data/ + +# Ruff +**/.ruff_cache/ + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json diff --git a/pyproject.toml b/pyproject.toml index f7c2d4f..b588e09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,6 +101,7 @@ exclude_lines = [ [tool.ruff] line-length = 88 indent-width = 4 +respect-gitignore = true extend-exclude = ["tests", "others"] [tool.ruff.lint]