Skip to content

Commit

Permalink
Merge pull request #91 from jorenham/maint/gitignore-mypy
Browse files Browse the repository at this point in the history
add `.mypy_cache` to `.gitignore`
  • Loading branch information
jorenham authored Oct 17, 2024
2 parents 796d586 + 4edecc4 commit fff32c4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ dist/
site/

# Cache
.cache/
.mypy_cache/
.pytest_cache/
.ruff_cache/
.tox/
Expand Down
16 changes: 12 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -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"]
}

0 comments on commit fff32c4

Please sign in to comment.