ConceptCore/.vscode/settings.json

139 lines
3.0 KiB
JSON
Raw Normal View History

2024-04-15 22:16:14 +03:00
{
2024-04-17 00:11:47 +03:00
"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",
2024-04-15 22:16:14 +03:00
"cSpell.words": [
2024-05-06 15:02:37 +03:00
"BIGPR",
"conanfile",
"coredll",
2024-04-15 22:16:14 +03:00
"DCMAKE",
"debool",
"DECART",
2024-04-15 22:16:14 +03:00
"Decartian",
"defexpr",
2024-05-06 15:02:37 +03:00
"EMPTYSET",
"FORALL",
"GNUC",
2024-04-15 22:16:14 +03:00
"gtest",
"ifdef",
2024-05-06 15:02:37 +03:00
"INTSET",
2024-04-15 22:16:14 +03:00
"MSVC",
"nlohmann",
"noteq",
2024-05-06 15:02:37 +03:00
"NOTEQUAL",
"NOTIN",
2024-04-15 22:16:14 +03:00
"notsubset",
2024-05-06 15:02:37 +03:00
"PUNC",
2024-04-15 22:16:14 +03:00
"pybind",
"pyconcept",
"rslang",
"setexpr",
2024-05-06 15:02:37 +03:00
"SMALLPR",
"struct",
"symmdiff",
2024-05-06 15:02:37 +03:00
"SYMMINUS",
"YYABORT",
"yylex",
"yylval",
"YYSTYPE",
"Булеан",
"Кардинальность",
"Родоструктурные"
],
"files.associations": {
"vector": "cpp",
"locale": "cpp",
"xlocale": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"algorithm": "cpp",
"any": "cpp",
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"charconv": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"compare": "cpp",
"concepts": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"exception": "cpp",
"forward_list": "cpp",
"list": "cpp",
"map": "cpp",
"set": "cpp",
"string": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"filesystem": "cpp",
"format": "cpp",
"functional": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"iterator": "cpp",
"limits": "cpp",
"memory": "cpp",
"new": "cpp",
"numeric": "cpp",
"optional": "cpp",
"ostream": "cpp",
"random": "cpp",
"ranges": "cpp",
"ratio": "cpp",
"regex": "cpp",
"span": "cpp",
"sstream": "cpp",
"stack": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeinfo": "cpp",
"utility": "cpp",
"valarray": "cpp",
"variant": "cpp",
"xfacet": "cpp",
"xhash": "cpp",
"xiosbase": "cpp",
"xlocbuf": "cpp",
"xlocinfo": "cpp",
"xmemory": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xtree": "cpp",
"xutility": "cpp"
}
2024-04-15 22:16:14 +03:00
}