mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-11-22 05:03:42 +00:00
Modified UI layouts, and performed XML formatting cleanup.
This commit is contained in:
parent
a2b08e3e34
commit
f5046cece6
192
.vscode/settings.json
vendored
192
.vscode/settings.json
vendored
|
|
@ -1,84 +1,120 @@
|
||||||
{
|
{
|
||||||
"[haxe]": {
|
"[haxe]": {
|
||||||
// Automatically keep Haxe files formatted.
|
// Automatically keep Haxe files formatted.
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
"editor.formatOnPaste": true,
|
"editor.formatOnPaste": true,
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
// Compilation server issues can cause auto-cleanup to remove valid imports.
|
// Compilation server issues can cause auto-cleanup to remove valid imports.
|
||||||
"source.organizeImports": false
|
"source.organizeImports": false
|
||||||
},
|
|
||||||
"editor.defaultFormatter": "nadako.vshaxe",
|
|
||||||
"editor.tabSize": 2
|
|
||||||
},
|
},
|
||||||
|
"editor.defaultFormatter": "nadako.vshaxe",
|
||||||
"[json]": {
|
"editor.tabSize": 2
|
||||||
// Automatically keep JSON files formatted.
|
},
|
||||||
"editor.formatOnSave": true,
|
|
||||||
"editor.formatOnPaste": true,
|
"[json]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
// 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",
|
||||||
|
"xml.format.enforceQuoteStyle": "preferred",
|
||||||
|
"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",
|
||||||
|
"haxe.enableCompilationServer": true,
|
||||||
|
"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"]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
"[jsonc]": {
|
"label": "Windows / Debug (DEBUG ASSETS)",
|
||||||
// Automatically keep JSONC files formatted.
|
"target": "windows",
|
||||||
"editor.formatOnSave": true,
|
"args": ["-debug", "-DDEBUG_ASSETS"]
|
||||||
"editor.formatOnPaste": true,
|
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
||||||
},
|
},
|
||||||
"prettier.tabWidth": 2,
|
{
|
||||||
|
"label": "Windows / Debug (ANIMATE)",
|
||||||
// Automatically detect indentation.
|
"target": "windows",
|
||||||
"editor.detectIndentation": true,
|
"args": ["-debug", "-DANIMATE"]
|
||||||
"editor.insertSpaces": true,
|
|
||||||
"editor.tabSize": 2,
|
|
||||||
|
|
||||||
// Automatically enforce Linux style line endings.
|
|
||||||
"files.eol": "\n",
|
|
||||||
|
|
||||||
"haxe.displayPort": "auto",
|
|
||||||
"haxe.enableCompilationServer": true,
|
|
||||||
"haxe.displayServer": {
|
|
||||||
"arguments": ["-v"]
|
|
||||||
},
|
},
|
||||||
// Fix file associations for HScript.
|
{
|
||||||
"files.associations": {
|
"label": "HTML5 / Debug",
|
||||||
"*.hxp": "haxe",
|
"target": "html5",
|
||||||
"*.hscript": "haxe",
|
"args": ["-debug"]
|
||||||
"*.haxe": "haxe",
|
|
||||||
"*.hxs": "haxe",
|
|
||||||
"*.hxc": "haxe"
|
|
||||||
},
|
},
|
||||||
"projectManager.git.baseFolders": ["./"],
|
{
|
||||||
|
"label": "HTML5 / Debug (Watch)",
|
||||||
"haxecheckstyle.sourceFolders": ["src", "Source"],
|
"target": "html5",
|
||||||
"haxecheckstyle.externalSourceRoots": [],
|
"args": ["-debug", "-watch"]
|
||||||
"haxecheckstyle.configurationFile": "checkstyle.json",
|
}
|
||||||
"haxecheckstyle.codeSimilarityBufferSize": 100,
|
]
|
||||||
|
}
|
||||||
"lime.targetConfigurations": [
|
|
||||||
{
|
|
||||||
"label": "Windows / Debug",
|
|
||||||
"target": "windows",
|
|
||||||
"args": ["-debug"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Windows / Debug (DEBUG ASSETS)",
|
|
||||||
"target": "windows",
|
|
||||||
"args": ["-debug", "-DDEBUG_ASSETS"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Windows / Debug (ANIMATE)",
|
|
||||||
"target": "windows",
|
|
||||||
"args": ["-debug", "-DANIMATE"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "HTML5 / Debug",
|
|
||||||
"target": "html5",
|
|
||||||
"args": ["-debug"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "HTML5 / Debug (Watch)",
|
|
||||||
"target": "html5",
|
|
||||||
"args": ["-debug", "-watch"]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue