Created
January 13, 2019 09:01
-
-
Save jamiemagique/bf00d3ecc9199f3d9a48576f9a0e53fe to your computer and use it in GitHub Desktop.
VSCode settings
This file contains 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
{ | |
"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 | |
} |
This file contains 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
{ | |
"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