Skip to content

Commit

Permalink
disable pylance for vscode workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Nov 8, 2024
1 parent ca8518e commit 6d3b2b2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"files.exclude": {
"**/__pycache__": true,
"**/.ruff_cache": true,
"**/.mypy_cache": true,
"**/.mypy_cache": true
},

// Ruff
Expand All @@ -19,9 +19,10 @@
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.analysis.ignore": ["*"], // Disable Pylance

// Mypy
"mypy.enabled": true,
"mypy.runUsingActiveInterpreter": true,
"mypy.configFile": "./pyproject.toml",
"mypy.configFile": "./pyproject.toml"
}

0 comments on commit 6d3b2b2

Please sign in to comment.