From 4dd1fbaf53eeabc189eec1758d5dfcd6ede253ea Mon Sep 17 00:00:00 2001 From: Daniil Fajnberg Date: Mon, 13 Mar 2023 18:35:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Store=20miscellaneous=20dev=20ca?= =?UTF-8?q?che=20files=20in=20their=20own=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 4 ++-- pyproject.toml | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0b5744a..9f4c7ab 100644 --- a/.gitignore +++ b/.gitignore @@ -21,5 +21,5 @@ __pycache__/ # Testing: /.coverage -# mypy: -.mypy_cache/ +# Miscellaneous cache: +.cache/ diff --git a/pyproject.toml b/pyproject.toml index 5182983..aa58f45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,6 +65,7 @@ version = {attr = "marshmallow_generic.__version__"} # Static type checking: # [tool.mypy] +cache_dir = ".cache/mypy" files = [ "src/", "tests/", @@ -80,6 +81,7 @@ plugins = [ # Unit test coverage: # [tool.coverage.run] +data_file = ".cache/coverage" source = [ "src/", ] @@ -105,6 +107,7 @@ omit = [ # Linting and style checking: # [tool.ruff] +cache-dir = ".cache/ruff" select = [ "E", # pycodestyle errors "W", # pycodestyle warnings