testsAndMisc/.vscode/settings.json

59 lines
1.3 KiB
JSON

{
"files.associations": {
"*.py": "python",
"stdio.h": "c"
},
"dart.flutterSdkPath": ".fvm/flutter_sdk",
"files.exclude": {
"**/*.png": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.gif": true,
"**/*.webp": true,
"**/*.svg": true,
"**/*.ico": true,
"**/*.bmp": true,
"**/*.apkg": true,
"**/*.pdf": true,
"**/*.pyc": true,
"**/__pycache__": true,
".venv": true,
"**/.venv": true,
".ruff_cache": true,
".mypy_cache": true,
"**/.dart_tool": true,
"**/generated_images_*": true,
"**/coverage": true
},
"search.exclude": {
"**/*.zip": true,
"**/*.so": true,
"**/*.o": true,
"**/*.flat": true,
"**/*.wav": true,
"**/*.mp3": true,
"**/*.ttf": true,
"**/*.woff": true,
"**/*.woff2": true,
"**/*.class": true,
"**/*.bin": true,
"**/*.db": true,
"**/*.sqlite": true,
"**/.dart_tool": true,
"**/ephemeral": true,
"**/node_modules": true
},
"coverage-gutters.coverageFileNames": [
"lcov.info",
"cov.xml",
"coverage.xml",
"cobertura.xml",
"jacoco.xml",
"coverage.cobertura.xml",
"coverage.lcov"
],
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["python_pkg"],
"python-envs.alwaysUseUv": true
}