the-honk/.vscode/settings.json

37 lines
912 B
JSON
Raw Normal View History

2021-12-21 20:16:51 +00:00
{
2022-01-03 00:39:38 +00:00
"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
},
"files.associations": {
"*.tcc": "cpp",
"complex": "cpp",
"fstream": "cpp",
"cmath": "cpp",
"functional": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"string_view": "cpp",
2022-03-31 15:19:23 +00:00
"vector": "cpp",
"algorithm": "cpp",
"memory": "cpp",
"random": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"numeric": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"streambuf": "cpp"
2022-09-03 23:20:04 +00:00
}
2021-12-21 20:16:51 +00:00
}