mithlond
08/19/2022, 6:35 PMsettings.json
file has no trailing commas or comments in it. Basically, needs to be syntactically valid vanilla JSON.Adam Cameron
mithlond
08/19/2022, 6:52 PMAdam Cameron
Adam Cameron
mithlond
08/19/2022, 7:36 PMdeal with it properly
- agreed, even if it's providing a specific error message like "yeah, we know jsonc is supported by other things, but right now we require plain yogurt JSON for this to work" just so that people don't have to wonder why it doesn't finish initializing. (And eventually, definitely handle jsonc properly)Adam Cameron
settings.json
file directly? Surely VSCode has already done that, and exposes it as a Settings object? VSCode would not be so badly designed it requires plug-ins to all load the settings themselves?mithlond
08/19/2022, 7:50 PMmithlond
08/19/2022, 7:51 PMAdam Cameron
priyank_adobe
08/19/2022, 8:00 PMmithlond
08/19/2022, 8:00 PMRodney
08/19/2022, 9:38 PMmithlond
08/19/2022, 9:50 PMAdam Cameron
mtbrown
08/20/2022, 12:02 PMpriyank_adobe
08/22/2022, 9:32 AMmithlond
08/22/2022, 7:30 PM{
"workbench.startupEditor": "none",
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"workbench.enableExperiments": false,
"workbench.quickOpen.closeOnFocusLost": false,
"workbench.statusBar.feedback.visible": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"editor.renderWhitespace": "boundary",
"editor.multiCursorModifier": "ctrlCmd",
"editor.rulers": [
{
"column": 80,
"color": "#00000010"
},
{
"column": 150,
"color": "#ff000050"
}
],
"editor.scrollBeyondLastLine": false,
"editor.minimap.renderCharacters": false,
"breadcrumbs.enabled": true,
"materialTheme.accent": "Remove accents",
"workbench.colorCustomizations": {},
"editor.suggest.maxVisibleSuggestions": 15,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.renderControlCharacters": false,
"files.associations": {
".cflintrc": "json"
},
"cflint.jarPath": "C:\\Users\\myUser\\CFLint-1.5.0-all.jar",
"cfml.autoCloseTags.enable": false,
"tabnine.experimentalAutoImports": true,
"AllAutocomplete.cycleOpenDocumentsOnLaunch": true,
"AllAutocomplete.languageSpecialCharacters": {
"css": "^[\\.#]",
"scss": "^[\\.#]",
"csv": "^[\\: ]"
},
"editor.minimap.showSlider": "always",
"editor.minimap.size": "fit",
"quickOpenFile.suffixList": ["**"],
"highlight-matching-tag.styles": {
"opening": {
"name": {
"underline": "red" // make this super apparent
}
}
},
"gitlens.statusBar.enabled": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": true
},
"[javascript]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"editor.linkedEditing": true,
"mssql.connections": [
{
"server": "M00421L\\SQLEXPRESS",
"database": "ISREG",
"authenticationType": "Integrated",
"password": ""
},
{
"server": "M00421L\\SQLEXPRESS",
"database": "ERROR",
"authenticationType": "Integrated",
"profileName": "ERROR",
"password": ""
}
],
"emmet.showSuggestionsAsSnippets": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"cfml": "html"
},
"search.seedWithNearestWord": true,
"window.menuBarVisibility": "compact",
"editor.minimap.enabled": false,
"prettier.arrowParens": "avoid",
"prettier.semi": false,
"[html]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"editor.guides.bracketPairs": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"sync.gist": "29877cd87da18194641d5d42a5c8f31c",
"editor.fontSize": 13,
"prettier.requireConfig": true,
"prettier.singleQuote": true,
"editor.semanticHighlighting.enabled": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "punctuation.definition.tag",
"settings": {
"foreground": "#abd90c"
}
},
{
"scope": "entity.name.tag.html",
"settings": {
"foreground": "#ca6675"
}
},
{
"scope": "entity.other.attribute-name",
"settings": {
"foreground": "#f5cd76"
}
},
{
"scope": "string.quoted.double.html",
"settings": {
"foreground": "#40b28f"
}
},
{
"scope": "string.quoted.single.html",
"settings": {
"foreground": "#40b28f"
}
},
{
"scope": "punctuation.definition.string.end.html",
"settings": {
"foreground": "#35b2dd"
}
},
{
"scope": "punctuation.definition.string.begin.html",
"settings": {
"foreground": "#35b2dd"
}
},
{
"scope": "keyword.operator",
"settings": {
"foreground": "#35b2dd"
}
},
{
"scope": "variable.parameter.js",
"settings": {
"foreground": "#b0611a"
}
},
{
"scope": "constant.language",
"settings": {
"foreground": "#088c54"
}
},
{
"scope": "storage.type.function.js",
"settings": {
"foreground": "#e36e86"
}
},
{
"scope": "entity.other.attribute-name.id.css",
"settings": {
"foreground": "#1eaab4"
}
},
{
"scope": "entity.other.attribute-name.class.css",
"settings": {
"foreground": "#1eaab4"
}
},
{
"scope": "meta.property-name.css",
"settings": {
"foreground": "#61d890"
}
},
{
"scope": "meta.property-value.css",
"settings": {
"foreground": "#42b81f"
}
},
{
"scope": "entity.name.function.js",
"settings": {
"foreground": "#ad6bff"
}
},
{
"scope": "entity.name.tag.cfml",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "variable.other.readwrite.cfml",
"settings": {
"foreground": "#9cdcfe"
}
},
{
"scope": "variable.parameter.function.cfml",
"settings": {
"foreground": "#ffca58"
}
},
{
"scope": "entity.name.function.cfml",
"settings": {
"foreground": "#c5c566"
}
},
{
"scope": "storage.type.cfml",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "meta.struct-literal.key.cfml",
"settings": {
"foreground": "#f5cd76"
}
}
]
},
"cfml.theme.initialized": true,
"AdobeCFML.report.downloadPath": "C:\\Users\\myUser\\Downloads",
"window.zoomLevel": 1,
"workbench.iconTheme": "file-icons",
"workbench.colorTheme": "Night Owl Light",
"AdobeCFML.diagnostics.maxNumberOfProblems": 102
}
mithlond
08/22/2022, 7:30 PM"underline": "red" // make this super apparent
mithlond
08/22/2022, 7:30 PMmithlond
08/22/2022, 7:30 PMmithlond
08/22/2022, 7:31 PM"opening": {
"name": {
"underline": "red"
},
}
mithlond
08/22/2022, 7:34 PMmithlond
08/22/2022, 7:34 PM