Skip to content

Instantly share code, notes, and snippets.

@endronk
Created April 4, 2022 09:41
Show Gist options
  • Save endronk/4f6ac6c77c87807438db0f44c2d6e3a6 to your computer and use it in GitHub Desktop.
Save endronk/4f6ac6c77c87807438db0f44c2d6e3a6 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"breadcrumbs.enabled": true,
"debug.javascript.codelens.npmScripts": "never",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false
// "source.organizeImports": true
},
"editor.cursorSmoothCaretAnimation": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": true,
"editor.fontFamily": "'Dank Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": false,
"editor.formatOnPaste": false,
"editor.glyphMargin": false,
"editor.hover.enabled": false,
"editor.lightbulb.enabled": false,
"editor.lineNumbers": "on",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "boundary",
"editor.rulers": [80],
"editor.smoothScrolling": true,
"editor.snippetSuggestions": "top",
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.wordBasedSuggestions": false,
"eslint.options": {
"env": {
"browser": true,
"jest/globals": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-debugger": "off"
}
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.associations": {
"*.md": "mdx"
},
"files.defaultLanguage": "{activeEditorLanguage}",
"files.exclude": {
"USE_GITIGNORE": true
},
"files.trimTrailingWhitespace": true,
"grunt.autoDetect": "off",
"gulp.autoDetect": "off",
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.showKeywords": false
},
"json.schemas": [
{
"name": "vscode-expo-manifest",
"url": "file:///Users/endru/Library/Application%20Support/Code/User/globalStorage/bycedric.vscode-expo/manifest-44.0.0.json",
"fileMatch": ["app.json", "app.config.json"]
}
],
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.bracketSpacing": true,
"prettier.proseWrap": "always",
"prettier.semi": true,
"prettier.trailingComma": "es5",
"prettier.useEditorConfig": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true,
"**/dist": true,
"**/build": true,
"**/.build": true,
"**/.gh-pages": true
},
"spellright.documentTypes": ["markdown", "plaintext", "mdx"],
"spellright.language": ["en"],
"spellright.parserByClass": {
"mdx": {
"parser": "markdown"
}
},
"terminal.integrated.scrollback": 10000,
"typescript.suggest.autoImports": true,
"workbench.activityBar.visible": true,
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.perEditorGroup": false,
"workbench.editor.limit.value": 18,
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "left",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "recentlyUsed",
"editor.suggest.showKeywords": false
},
"workbench.panel.defaultLocation": "right",
"editor.formatOnSave": true,
"diffEditor.ignoreTrimWhitespace": false,
"settingsSync.ignoredSettings": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment