swag-shop/.vscode/settings.json

15 lines
719 B
JSON

{
// #region Backend settings
"files.exclude" : { "**/__pycache__/**": true }, // Hide __pycache__ directories
"mypy-type-checker.args" : ["--config-file='backend/mypy.ini'"], // Override mypy config
"python.defaultInterpreterPath" : "./backend/.venv/bin/python", // Use venv by default
"python.analysis.extraPaths" : ["./backend"], // Pylint - fix for import analysis
"pylint.cwd" : "${workspaceFolder}/backend",
// #endregion
// #region Frontend settings
"prettier.configPath": "./frontend/.prettierrc", // Prettier config override
"biome.lspBin": "${workspaceFolder}/frontend"
// #endregion
}