diff --git a/.gitignore b/.gitignore index 52ec4b61..159dc32a 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ dist/ site/ # Cache +.cache/ +.mypy_cache/ .pytest_cache/ .ruff_cache/ .tox/ diff --git a/.vscode/settings.json b/.vscode/settings.json index 906be06d..d193a2dd 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,14 +1,22 @@ { + "[json]": { + "editor.tabSize": 2 + }, + "[jsonc]": { + "editor.tabSize": 2 + }, "[markdown]": { "editor.rulers": [130] }, "[python]": { "editor.rulers": [130] }, - "[toml]": { - "editor.rulers": [88], - "editor.tabSize": 4 + "[yaml]": { + "editor.autoIndent": "advanced", + "editor.tabSize": 2 }, + "editor.rulers": [88], + "editor.tabSize": 4, "git.branchProtection": ["master"], - "mypy-type-checker.args": ["--config-file=pyproject.toml"] + "mypy-type-checker.args": ["--config-file=pyproject.toml", "--ide"] }