Skip to content

Instantly share code, notes, and snippets.

@wmakeev
Created January 30, 2023 18:33
Show Gist options
  • Save wmakeev/6b34e9bae572938070a3a834773f5abc to your computer and use it in GitHub Desktop.
Save wmakeev/6b34e9bae572938070a3a834773f5abc to your computer and use it in GitHub Desktop.
[$mol vscode code format settings] #mol #format #settings
{
"typescript.tsdk": "node_modules/typescript/lib",
"files.watcherExclude": {
"**/node_modules": true,
"**/-*": false
},
"search.exclude": {
"**/node_modules": true,
"**/-*": true
},
"files.exclude": {
"**/-*": false
},
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
"javascript.format.semicolons": "remove",
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
"typescript.format.insertSpaceAfterTypeAssertion": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": false,
"typescript.format.semicolons": "remove",
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
"editor.formatOnSave": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment