Skip to content

Instantly share code, notes, and snippets.

@jonwaldstein
Last active December 26, 2021 04:53
Show Gist options
  • Save jonwaldstein/5ac5dbd78611da725d18567d2f714b64 to your computer and use it in GitHub Desktop.
Save jonwaldstein/5ac5dbd78611da725d18567d2f714b64 to your computer and use it in GitHub Desktop.
Vscode settings with eslint
{
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
},
"breadcrumbs.enabled": false,
"diffEditor.renderSideBySide": false,
"editor.autoIndent": "full",
"editor.colorDecorators": false,
"editor.cursorBlinking": "solid",
"editor.cursorWidth": 5,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": false,
"editor.find.seedSearchStringFromSelection": "always",
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.fontWeight": "400",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.gotoLocation.multipleDeclarations": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"editor.letterSpacing": 0.5,
"editor.lineHeight": 26,
"editor.matchBrackets": "always",
"editor.minimap.enabled": true,
"editor.minimap.showSlider": "always",
"editor.multiCursorModifier": "ctrlCmd",
"editor.parameterHints.enabled": true,
"editor.quickSuggestions": {
"comments": false,
"other": true,
"strings": true
},
"editor.quickSuggestionsDelay": 30,
"editor.renderWhitespace": "none",
"editor.rulers": [80, 100],
"editor.scrollBeyondLastLine": true,
"editor.showFoldingControls": "always",
"editor.snippetSuggestions": "top",
"editor.useTabStops": true,
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"blade": "html",
"javascript": "javascriptreact"
},
"eslint.alwaysShowStatus": true,
"eslint.packageManager": "yarn",
"explorer.openEditors.visible": 0,
"extensions.ignoreRecommendations": false,
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.next": true,
"**/.svn": true,
"**/CVS": true
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"html.format.enable": true,
"html.format.preserveNewLines": true,
"intelephense.stubs": [
"apache",
"bcmath",
"bz2",
"calendar",
"com_dotnet",
"Core",
"ctype",
"curl",
"date",
"dba",
"dom",
"enchant",
"exif",
"FFI",
"fileinfo",
"filter",
"fpm",
"ftp",
"gd",
"gettext",
"gmp",
"hash",
"iconv",
"imap",
"intl",
"json",
"ldap",
"libxml",
"mbstring",
"meta",
"mysqli",
"oci8",
"odbc",
"openssl",
"pcntl",
"pcre",
"PDO",
"pdo_ibm",
"pdo_mysql",
"pdo_pgsql",
"pdo_sqlite",
"pgsql",
"Phar",
"posix",
"pspell",
"readline",
"Reflection",
"session",
"shmop",
"SimpleXML",
"snmp",
"soap",
"sockets",
"sodium",
"SPL",
"sqlite3",
"standard",
"superglobals",
"sysvmsg",
"sysvsem",
"sysvshm",
"tidy",
"tokenizer",
"xml",
"xmlreader",
"xmlrpc",
"xmlwriter",
"xsl",
"Zend OPcache",
"zip",
"zlib",
"wordpress"
],
"javascript.preferences.quoteStyle": "single",
"materialTheme.accent": "Teal",
"merge-conflict.autoNavigateNextConflict.enabled": true,
"prettier.singleQuote": true,
"typescript.preferences.quoteStyle": "single",
"window.closeWhenEmpty": true,
"window.openFilesInNewWindow": "off",
"window.title": "${folderName}",
"window.zoomLevel": 1,
"workbench.activityBar.visible": true,
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.tabCloseButton": "right",
"workbench.editor.tabSizing": "shrink",
"workbench.iconTheme": "eq-material-theme-icons-darker",
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.visible": false,
"workbench.tree.indent": 10,
"workbench.tree.renderIndentGuides": "none",
"workbench.colorTheme": "Community Material Theme Darker High Contrast"
}
@jonwaldstein
Copy link
Author

code --list-extensions

bmewburn.vscode-intelephense-client
bradlc.vscode-tailwindcss
cmstead.jsrefactor
dbaeumer.vscode-eslint
dsznajder.es7-react-js-snippets
eamodio.gitlens
emallin.phpunit
Equinusocio.vsc-community-material-theme
Equinusocio.vsc-material-theme
equinusocio.vsc-material-theme-icons
esbenp.prettier-vscode
felixfbecker.php-debug
formulahendry.auto-close-tag
jkjustjoshing.vscode-text-pastry
kumar-harsh.graphql-for-vscode
mblode.twig-language-2
mikestead.dotenv
ms-vscode.sublime-keybindings
naumovs.color-highlight
onecentlin.laravel-blade
Prisma.vscode-graphql
rebornix.project-snippets
richie5um2.vscode-sort-json
shinnn.stylelint
silvenon.mdx
sleistner.vscode-fileutils
wayou.vscode-todo-highlight
wix.vscode-import-cost
xabikos.ReactSnippets

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment