| 12345678910111213141516171819202122232425262728293031323334353637 |
- {
- // Code formatting
- "C_Cpp.clang_format_style": "{ BasedOnStyle: LLVM, IndentWidth: 4, ColumnLimit: 0, NamespaceIndentation: All, BreakBeforeBraces: Attach, PointerAlignment: Left, IndentPPDirectives: AfterHash}",
- "C_Cpp.vcFormat.newLine.beforeOpenBrace.block": "sameLine",
- "C_Cpp.vcFormat.newLine.beforeOpenBrace.type": "sameLine",
- "C_Cpp.vcFormat.newLine.beforeOpenBrace.function": "sameLine",
- "C_Cpp.vcFormat.space.pointerReferenceAlignment": "left",
- "C_Cpp.clang_format_sortIncludes": false,
- "C_Cpp.vcFormat.indent.namespaceContents": true,
- "C_Cpp.workspaceSymbols": "All",
- // File copyright documentation tag. Array of strings will be converted to one line per element. Can template {year}.
- "doxdocgen.file.copyrightTag": [
- "@copyright Kohi Game Engine is Copyright (c) Travis Vroman 2021-{year}"
- ],
- "doxdocgen.file.versionTag": "@version 1.0",
- "doxdocgen.generic.authorEmail": "[email protected]",
- "doxdocgen.generic.authorName": "Travis Vroman",
- "doxdocgen.generic.authorTag": "@author {author} ({email})",
- // The order to use for the file comment. Values can be used multiple times. Valid values are shown in default setting.
- "doxdocgen.file.fileOrder": [
- "file",
- "author",
- "brief",
- "version",
- "date",
- "empty",
- "copyright",
- "empty",
- "custom"
- ],
- "files.associations": {
- "core_render_types.h": "c",
- "logger.h": "c",
- "vfs.h": "c",
- "kresource_system.h": "c"
- }
- }
|