nova-api/.vscode/settings.json

22 lines
473 B
JSON
Raw Normal View History

2023-06-23 02:18:28 +02:00
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/__pycache__": true,
"**/.vscode": true,
"**/*.map": true,
"tests/__pycache__": true
},
"hide-files.files": [
"tests/__pycache__",
"api/__pycache__"
],
"python.analysis.extraPaths": [
".",
"./api/db"
2023-06-23 02:18:28 +02:00
]
}