Skip to content

Instantly share code, notes, and snippets.

@jamiemagique
Created January 13, 2019 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiemagique/bf00d3ecc9199f3d9a48576f9a0e53fe to your computer and use it in GitHub Desktop.
Save jamiemagique/bf00d3ecc9199f3d9a48576f9a0e53fe to your computer and use it in GitHub Desktop.
VSCode settings
{
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Meslo LG M for Powerline",
"terminal.integrated.fontSize": 12,
"files.insertFinalNewline": true,
"workbench.colorTheme": "Default Dark+",
"editor.tabSize": 2,
"editor.fontSize": 18,
"files.associations": {
"*.twig": "html",
"*.mustache": "html",
"jsbeautifyrc": "json",
},
"yaml.format.enable": true,
"editor.insertSpaces": true,
"editor.renderWhitespace": "all",
"html.format.wrapLineLength": 120,
"editor.trimAutoWhitespace": true,
"prettier.stylelintIntegration": true,
"prettier.eslintIntegration": true,
"explorer.confirmDragAndDrop": false,
"eslint.enable": true,
"prettier.trailingComma": "all",
"explorer.confirmDelete": false,
"extensions.ignoreRecommendations": true,
"window.zoomLevel": 0,
"editor.formatOnSave": false,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"workbench.iconTheme": "vscode-great-icons",
"todohighlight.keywords": [
"DEBUG",
"REVIEW",
{
"text": "NOTE",
"color": "#ff0000",
"backgroundColor": "yellow",
"overviewRulerColor": "grey",
"isWholeLine": true,
},
{
"text": "HACK",
"color": "#000",
"isWholeLine": true,
},
{
"text": "TODO",
"color": "#fff",
"backgroundColor": "#f00",
"isWholeLine": true,
},
{
"text": "@todo",
"color": "#fff",
"backgroundColor": "#f00",
"isWholeLine": true,
}
],
"gitlens.gitExplorer.autoRefresh": false,
"cSpell.language": "en-GB",
"breadcrumbs.enabled": true
}
{
"prettier.stylelintIntegration": true,
"prettier.eslintIntegration": true,
"eslint.options": {
"configFile": ".eslintrc",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"optionalChaining": true
}
},
"files.associations": {
"*.module.scss": "scss"
},
"eslint.enable": true,
"editor.renderWhitespace": "all",
"editor.trimAutoWhitespace": true,
"prettier.trailingComma": "all",
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"eslint.run": "onSave",
"javascript.validate.enable": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment