Last active
May 25, 2021 04:51
-
-
Save hta218/22f5c92edc1767d99a7c8d0b651197d2 to your computer and use it in GitHub Desktop.
VS Code settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontSize": 18, | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", | |
"explorer.confirmDragAndDrop": false, | |
"editor.tabSize": 2, | |
"emmet.syntaxProfiles": { | |
"javascript": "js" | |
}, | |
"terminal.integrated.fontSize": 14, | |
"breadcrumbs.enabled": true, | |
"terminal.integrated.rendererType": "dom", | |
"editor.fontFamily": "Monaco", | |
"terminal.integrated.fontFamily": "Monaco", | |
"editor.find.addExtraSpaceOnTop": false, | |
"workbench.colorTheme": "Dracula", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"git.autofetch": true, | |
"vsicons.dontShowNewVersionMessage": true, | |
"cSpell.enableFiletypes": [ | |
"!markdown" | |
], | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"html.validate.scripts": false, | |
"html.validate.styles": false, | |
"liquid.rules": { | |
"ignore": [ | |
{ | |
"type": "liquid", | |
"begin": "comment", | |
"end": "endcomment" | |
}, | |
{ | |
"type": "liquid", | |
"begin": "script", | |
"end": "script" | |
}, | |
{ | |
"type": "liquid", | |
"begin": "style", | |
"end": "style" | |
} | |
], | |
"html": { | |
"correct": false, | |
"force_attribute": false, | |
"braces": false, | |
"preserve": 2, | |
"unformatted": false | |
}, | |
"js": { | |
"preserve": 1, | |
"method_chain": 0, | |
"quote_convert": "none", | |
"format_array": "indent", | |
"format_object": "indent", | |
"braces": false, | |
"no_semicolon": false, | |
"brace_block": true | |
}, | |
"scss": { | |
"css_insert_lines": true, | |
"preserve": 2, | |
"braces": false, | |
"brace_block": true | |
}, | |
"css": { | |
"css_insert_lines": true, | |
"preserve": 2, | |
"braces": false, | |
"brace_block": true | |
}, | |
"json": { | |
"preserve": 0, | |
"braces": false, | |
"brace_block": true, | |
"no_semicolon": true | |
} | |
}, | |
"liquid.format": true, | |
"editor.detectIndentation": false, | |
"editor.insertSpaces": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"scss.validate": false, | |
"tailwindCSS.includeLanguages": { | |
"liquid": "liquid" | |
}, | |
"yaml.schemas": { | |
"file:///Users/leo/.vscode/extensions/atlassian.atlascode-2.8.6/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
}, | |
"atlascode.bitbucket.enabled": true, | |
"atlascode.jira.lastCreateSiteAndProject": { | |
"siteId": "", | |
"projectKey": "" | |
}, | |
"workbench.editor.untitled.hint": "hidden" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment