ConceptCore/.vscode/settings.json
2024-04-17 14:43:14 +03:00

36 lines
916 B
JSON

{
"search.exclude": {
".mypy_cache/": true,
".pytest_cache/": true
},
"python.testing.unittestArgs": ["-v", "-s", "./tests", "-p", "t_*.py"],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.analysis.typeCheckingMode": "off",
"python.analysis.ignore": ["**/tests/**", "**/venv/**"],
"cmake.configureOnEdit": false,
"cmake.configureOnOpen": false,
"cmake.sourceDirectory": "${workspaceFolder}/ccl",
"cmake.configureArgs": ["--preset=conan-default"],
"cmake.buildArgs": ["--preset=conan-release"],
"cmake.ctestArgs": ["--test-dir build", "--output-on-failure"],
"cmake.installPrefix": "output",
"cSpell.words": [
"conanfile",
"coredll",
"DCMAKE",
"debool",
"Decartian",
"defexpr",
"gtest",
"MSVC",
"nlohmann",
"noteq",
"notsubset",
"pybind",
"pyconcept",
"rslang",
"symmdiff"
]
}