the-honk/.vscode/settings.json
2024-10-09 18:02:44 +01:00

38 lines
994 B
JSON

{
"java.project.sourcePaths": ["java"],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"node_modules": true,
"challenges/euler/node_modules": true,
"challenges/euler/build": true,
"commitlint.config.js": true,
"**/pnpm-lock.yaml": true
},
"C_Cpp.errorSquiggles": "Disabled",
"files.associations": {
"*.tcc": "cpp",
"complex": "cpp",
"fstream": "cpp",
"cmath": "cpp",
"functional": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"string_view": "cpp",
"vector": "cpp",
"algorithm": "cpp",
"memory": "cpp",
"random": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"numeric": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"streambuf": "cpp"
}
}