Skip to content

Instantly share code, notes, and snippets.

@patrickmaciel
Created January 11, 2020 17:09
Show Gist options
  • Save patrickmaciel/3d6345371960da4f57294094c73b4741 to your computer and use it in GitHub Desktop.
Save patrickmaciel/3d6345371960da4f57294094c73b4741 to your computer and use it in GitHub Desktop.
Visual Studio Code settings for Javascript React Eslint + Laravel PHP CS
{
"breadcrumbs.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"editor.formatOnType": false,
"editor.lineHeight": 22,
"editor.renderLineHighlight": "all",
"editor.rulers": [ 80, 120 ],
"editor.tabSize": 2,
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"blade": "html",
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"eslint.codeActionsOnSave.mode": "all",
"eslint.validate": ["javascript", "javascriptreact", "typescriptreact"],
"explorer.autoReveal": true,
"explorer.confirmDelete": true,
"files.associations": {
".blade.php": [
"html",
"blade"
],
".tpl": "html"
},
"files.eol": "\n",
"git.autofetch": true,
"gitlens.advanced.telemetry.enabled": false,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"markdown.preview.fontSize": 20,
"php.validate.enable": true,
"php.validate.run": "onType",
"php.validate.executablePath": "c:\\php\\php.exe",
"php.suggest.basic": false,
"phpcs.standard": "PSR2",
"phpcs.executablePath": "C:\\Users\\patri\\AppData\\Roaming\\Composer\\vendor\\bin\\phpcs",
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.fontSize": 16,
"terminal.integrated.commandsToSkipShell": [
// Ensure the toggle sidebar visibility keybinding skips the shell
"workbench.action.toggleSidebarVisibility",
// Send quick open's keybinding to the shell
"-workbench.action.quickOpen",
],
"terminal.integrated.lineHeight": 1.2,
// "terminal.integrated.rendererType": "dom",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shellArgs.linux": [
"-l",
"-i"
],
"workbench.editor.enablePreview": false,
"workbench.editor.highlightModifiedTabs": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment