2023-02-23 02:40:46 +00:00
|
|
|
{
|
2023-06-08 20:28:58 +00:00
|
|
|
"[haxe]": {
|
|
|
|
// Automatically keep Haxe files formatted.
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.formatOnPaste": true,
|
|
|
|
"editor.codeActionsOnSave": {
|
2023-12-14 22:34:02 +00:00
|
|
|
"source.organizeImports": "never"
|
2023-02-23 02:40:46 +00:00
|
|
|
},
|
2023-06-08 20:28:58 +00:00
|
|
|
"editor.defaultFormatter": "nadako.vshaxe",
|
|
|
|
"editor.tabSize": 2
|
|
|
|
},
|
|
|
|
|
|
|
|
"[json]": {
|
|
|
|
// Automatically keep JSON files formatted.
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.formatOnPaste": true,
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
},
|
|
|
|
|
|
|
|
"[jsonc]": {
|
|
|
|
// Automatically keep JSONC files formatted.
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.formatOnPaste": true,
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
},
|
|
|
|
"prettier.tabWidth": 2,
|
|
|
|
|
|
|
|
// XML formatting style configuration
|
|
|
|
"xml.format.enabled": true,
|
|
|
|
"xml.format.legacy": false,
|
|
|
|
"xml.format.emptyElements": "collapse",
|
|
|
|
"xml.preferences.quoteStyle": "double",
|
2023-06-08 20:34:06 +00:00
|
|
|
"xml.format.enforceQuoteStyle": "preferred",
|
2023-06-08 20:28:58 +00:00
|
|
|
"xml.format.preserveAttributeLineBreaks": false,
|
|
|
|
"xml.format.preservedNewlines": 0,
|
|
|
|
"xml.format.splitAttributes": false,
|
|
|
|
"xml.format.joinCDATALines": true,
|
|
|
|
"xml.format.preserveEmptyContent": false,
|
|
|
|
"xml.format.joinCommentLines": false,
|
|
|
|
"xml.format.joinContentLines": false,
|
|
|
|
"xml.format.spaceBeforeEmptyCloseTag": true,
|
|
|
|
"xml.format.xsiSchemaLocationSplit": "onPair",
|
|
|
|
"xml.format.splitAttributesIndentSize": 2,
|
|
|
|
"xml.format.closingBracketNewLine": false,
|
|
|
|
"xml.format.preserveSpace": [
|
|
|
|
"xsl:text",
|
|
|
|
"xsl:comment",
|
|
|
|
"xsl:processing-instruction",
|
|
|
|
"literallayout",
|
|
|
|
"programlisting",
|
|
|
|
"screen",
|
|
|
|
"synopsis",
|
|
|
|
"pre",
|
|
|
|
"xd:pre"
|
|
|
|
],
|
|
|
|
"xml.format.maxLineWidth": 0,
|
|
|
|
"xml.format.grammarAwareFormatting": true,
|
|
|
|
|
|
|
|
// Generic file formatting style configuration
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
"files.trimFinalNewlines": false,
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
|
|
|
|
// Automatically detect indentation.
|
|
|
|
"editor.detectIndentation": true,
|
|
|
|
"editor.insertSpaces": true,
|
|
|
|
"editor.tabSize": 2,
|
|
|
|
|
|
|
|
// Automatically enforce Linux style line endings.
|
|
|
|
"files.eol": "\n",
|
|
|
|
|
|
|
|
"haxe.displayPort": "auto",
|
2023-10-26 09:46:22 +00:00
|
|
|
"haxe.enableCompilationServer": false,
|
2023-06-08 20:28:58 +00:00
|
|
|
"haxe.displayServer": {
|
|
|
|
"arguments": ["-v"]
|
|
|
|
},
|
|
|
|
// Fix file associations for HScript.
|
|
|
|
"files.associations": {
|
|
|
|
"*.hxp": "haxe",
|
|
|
|
"*.hscript": "haxe",
|
|
|
|
"*.haxe": "haxe",
|
|
|
|
"*.hxs": "haxe",
|
|
|
|
"*.hxc": "haxe"
|
|
|
|
},
|
|
|
|
"projectManager.git.baseFolders": ["./"],
|
|
|
|
|
|
|
|
"haxecheckstyle.sourceFolders": ["src", "Source"],
|
|
|
|
"haxecheckstyle.externalSourceRoots": [],
|
|
|
|
"haxecheckstyle.configurationFile": "checkstyle.json",
|
|
|
|
"haxecheckstyle.codeSimilarityBufferSize": 100,
|
|
|
|
|
|
|
|
"lime.targetConfigurations": [
|
|
|
|
{
|
|
|
|
"label": "Windows / Debug",
|
|
|
|
"target": "windows",
|
|
|
|
"args": ["-debug"]
|
2023-02-23 02:40:46 +00:00
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug"]
|
|
|
|
},
|
2023-06-08 20:28:58 +00:00
|
|
|
{
|
2023-10-26 09:46:22 +00:00
|
|
|
"label": "Windows / Debug (FlxAnimate Test)",
|
2023-06-08 20:28:58 +00:00
|
|
|
"target": "windows",
|
2023-10-26 09:46:22 +00:00
|
|
|
"args": ["-debug", "-DANIMATE"]
|
2023-02-23 02:40:46 +00:00
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug (FlxAnimate Test)",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug", "-DANIMATE"]
|
|
|
|
},
|
2023-06-08 20:28:58 +00:00
|
|
|
{
|
2023-10-26 09:46:22 +00:00
|
|
|
"label": "Windows / Debug (Straight to Freeplay)",
|
2023-06-08 20:28:58 +00:00
|
|
|
"target": "windows",
|
2023-10-26 09:46:22 +00:00
|
|
|
"args": ["-debug", "-DFREEPLAY"]
|
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug (Straight to Freeplay)",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug", "-DFREEPLAY"]
|
|
|
|
},
|
2023-10-26 09:46:22 +00:00
|
|
|
{
|
|
|
|
"label": "Windows / Debug (Straight to Play - Bopeebo Normal)",
|
|
|
|
"target": "windows",
|
|
|
|
"args": ["-debug", "-DSONG=bopeebo -DDIFFICULTY=normal"]
|
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug (Straight to Play - Bopeebo Normal)",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug", "-DSONG=bopeebo -DDIFFICULTY=normal"]
|
|
|
|
},
|
2024-02-07 14:21:44 +00:00
|
|
|
{
|
|
|
|
"label": "Windows / Debug (Conversation Test)",
|
|
|
|
"target": "windows",
|
|
|
|
"args": ["-debug", "-DDIALOGUE"]
|
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug (Conversation Test)",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug", "-DDIALOGUE"]
|
|
|
|
},
|
2023-10-26 09:46:22 +00:00
|
|
|
{
|
|
|
|
"label": "Windows / Debug (Straight to Chart Editor)",
|
|
|
|
"target": "windows",
|
|
|
|
"args": ["-debug", "-DCHARTING"]
|
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug (Straight to Chart Editor)",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug", "-DCHARTING"]
|
|
|
|
},
|
2023-10-26 09:46:22 +00:00
|
|
|
{
|
|
|
|
"label": "Windows / Debug (Straight to Animation Editor)",
|
|
|
|
"target": "windows",
|
|
|
|
"args": ["-debug", "-DANIMDEBUG"]
|
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug (Straight to Animation Editor)",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug", "-DANIMDEBUG"]
|
|
|
|
},
|
2023-10-26 09:46:22 +00:00
|
|
|
{
|
|
|
|
"label": "Windows / Debug (Latency Test)",
|
|
|
|
"target": "windows",
|
|
|
|
"args": ["-debug", "-DLATENCY"]
|
2023-02-23 02:40:46 +00:00
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug (Latency Test)",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug", "-DLATENCY"]
|
|
|
|
},
|
2024-01-20 19:07:48 +00:00
|
|
|
{
|
|
|
|
"label": "Windows / Debug (Waveform Test)",
|
|
|
|
"target": "windows",
|
|
|
|
"args": ["-debug", "-DWAVEFORM"]
|
|
|
|
},
|
2024-02-14 02:43:54 +00:00
|
|
|
{
|
|
|
|
"label": "HashLink / Debug (Waveform Test)",
|
|
|
|
"target": "hl",
|
|
|
|
"args": ["-debug", "-DWAVEFORM"]
|
|
|
|
},
|
2023-06-08 20:28:58 +00:00
|
|
|
{
|
|
|
|
"label": "HTML5 / Debug",
|
|
|
|
"target": "html5",
|
|
|
|
"args": ["-debug"]
|
2023-02-23 02:40:46 +00:00
|
|
|
},
|
2023-06-08 20:28:58 +00:00
|
|
|
{
|
|
|
|
"label": "HTML5 / Debug (Watch)",
|
|
|
|
"target": "html5",
|
|
|
|
"args": ["-debug", "-watch"]
|
|
|
|
}
|
2023-06-25 16:36:00 +00:00
|
|
|
],
|
2023-08-30 22:31:59 +00:00
|
|
|
"cmake.configureOnOpen": false,
|
|
|
|
"coverage-gutters.coverageFileNames": [
|
|
|
|
"lcov.info",
|
|
|
|
"cov.xml",
|
|
|
|
"coverage.xml",
|
|
|
|
"jacoco.xml",
|
|
|
|
"coverage.cobertura.xml"
|
|
|
|
]
|
2023-06-08 20:28:58 +00:00
|
|
|
}
|