Skip to content

Instantly share code, notes, and snippets.

@danieluhl
Created August 3, 2020 18:14
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 danieluhl/5515f0b86e9ee538d2063f4040d85ace to your computer and use it in GitHub Desktop.
Save danieluhl/5515f0b86e9ee538d2063f4040d85ace to your computer and use it in GitHub Desktop.
vscode settings.json snapshot
{
"editor.fontSize": 16,
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.minimap.enabled": false,
"editor.cursorStyle": "block",
"editor.snippetSuggestions": "top",
"editor.renderIndentGuides": true,
"editor.cursorBlinking": "smooth",
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.rulers": [
80,
120
],
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.acceptSuggestionOnEnter": "off",
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"[markdown]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
},
"[javascript]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120,
},
"window.zoomLevel": 0,
"workbench.activityBar.visible": false,
"files.trimTrailingWhitespace": true,
"emmet.syntaxProfiles": {
"javascript": "js",
"javascriptreact": "js"
},
"window.newWindowDimensions": "inherit",
"workbench.sideBar.location": "left",
"prettier.singleQuote": true,
"php.validate.executablePath": "/usr/local/bin/php",
"files.eol": "\n",
"workbench.startupEditor": "none",
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.history": true,
"**/.npm": true,
"**/node_modules": true,
"**/yui_modules": true,
"st4/admin": true,
"st4/countdown": true,
"st4/extranet": true,
"st4/includes/js/amd_dist/vendor": true,
"st4/includes/vendor": true,
"st4/svg": true
},
"files.watcherExclude": {
"**/.git/objects": true,
"**/.npm": true,
"**/node_modules": true,
"**/yui_modules": true,
"st4/admin": true,
"st4/countdown": true,
"st4/extranet": true,
"st4/svg": true
},
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"javascript.format.enable": true,
"workbench.statusBar.feedback.visible": false,
"debug.showInStatusBar": "never",
"sasslint.configFile": "/Users/duhl/git/sync/resources/st4/includes/.sass-lint.yml",
"files.associations": {
"*.js": "javascriptreact"
},
"explorer.confirmDelete": false,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"explorer.confirmDragAndDrop": false,
"html.format.maxPreserveNewLines": 1,
"eslint.options": {
"rules": {
"@wayfair/wf-rules/check-prettier": "off",
"import/no-unresolved": "off",
"max-params": "off",
}
},
"html.format.wrapLineLength": 80,
"workbench.colorTheme": "Night Owl",
"bracketPairColorizer.forceIterationColorCycle": true,
"editor.fontFamily": "Dank Mono",
"editor.fontLigatures": true,
"workbench.colorCustomizations": {
"activityBar.background": "#000C1D",
"activityBar.border": "#102a44",
"sideBar.background": "#001122",
"sideBar.border": "#102a44",
"sideBar.foreground": "#8BADC1",
"editorIndentGuide.activeBackground": "#bbd2f7"
},
"mssql.connections": [
{
"server": "DEVBOSQLINTC2",
"database": "csn_acctclose",
"authenticationType": "Integrated",
"password": ""
},
{
"server": "BOSQLC6",
"database": "csn_product",
"authenticationType": "Integrated",
"password": ""
},
{
"server": "DEVBOSQLC6",
"database": "csn_product",
"authenticationType": "Integrated",
"password": ""
},
{
"server": "BOSQLC10",
"database": "",
"authenticationType": "Integrated",
"profileName": "BOSQLC10",
"password": ""
}
],
"window.title": "${activeEditorLong}",
"window.titleBarStyle": "custom",
"terminal.integrated.fontSize": 16,
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"prettier.arrowParens": "avoid",
"prettier.useTabs": false,
"prettier.tabWidth": 2,
"prettier.bracketSpacing": false,
"search.exclude": {
"/node_modules": true,
"node_modules": true,
"**/node_modules": true
},
"cSpell.userWords": [
"Herlihy",
"Lnrs",
"Wayfair",
"duhl",
"duplicative",
"frontmatter",
"impactful",
"oclif",
"parallelization",
"pixelmatch",
"promisify"
],
"javascript.updateImportsOnFileMove.enabled": "never",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"path-intellisense.showHiddenFiles": true,
"prettier.packageManager": "yarn",
"prettier.useEditorConfig": false,
"prettier.proseWrap": "always",
"openInGitHub.providerType": "github",
"tabnine.experimentalAutoImports": true,
"typescript.validate.enable": false,
"typescript.suggest.autoImports": false,
"alexLinter.check.enabled": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment