Created
May 23, 2022 23:05
-
-
Save dgcoffman/b772b31adf612ac130f940989da4254a to your computer and use it in GitHub Desktop.
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
{ | |
"telemetry.telemetryLevel": "off", | |
"nxConsole.enableTelemetry": false, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 16, | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"workbench.editor.enablePreview": false, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"editor.rulers": [80], | |
"editor.scrollBeyondLastLine": false, | |
"editor.wordWrap": "on", | |
"editor.minimap.enabled": true, | |
"editor.glyphMargin": false, | |
"window.openFilesInNewWindow": "off", | |
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}", | |
"window.newWindowDimensions": "inherit", | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "all", | |
"typescript.check.npmIsInstalled": false, | |
"search.exclude": { | |
".cache": true, | |
".git": true, | |
"*.log": true, | |
"**/vendor": true, | |
"build": true, | |
"dist": true, | |
"flow-typed": true, | |
"tmp": true | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"extensions.ignoreRecommendations": true, | |
"explorer.confirmDelete": false, | |
"window.clickThroughInactive": false, | |
"bazel.buildifierFixOnFormat": true, | |
"workbench.colorTheme": "One Monokai", | |
"workbench.iconTheme": "material-icon-theme", | |
"security.workspace.trust.untrustedFiles": "open", | |
"editor.unicodeHighlight.allowedCharacters": { | |
"–": true | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"eslint.alwaysShowStatus": true, | |
"eslint.debug": true, | |
"editor.formatOnSave": true, | |
"eslint.format.enable": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"workbench.activityBar.visible": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment