Last active
March 23, 2023 22:08
-
-
Save tokenvolt/2f4d1080adc60fbd148338e25534aa3c 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
{ | |
"window.zoomLevel": -1, | |
"window.title": "${activeEditorLong}${separator}${rootName}", | |
"workbench.iconTheme": "vscode-great-icons", | |
"editor.tabSize": 2, | |
"files.trimTrailingWhitespace": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"files.associations": { | |
".rescriptsrc": "javascript", | |
"*.json": "jsonc", | |
"*.heex": "elixir" | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"javascript.validate.enable": false, | |
"editor.lineNumbers": "relative", | |
"elixirLS.dialyzerEnabled": false, | |
"elixirLS.suggestSpecs": false, | |
"prettier.requireConfig": true, | |
"javascript.preferences.importModuleSpecifier": "non-relative", | |
"typescript.preferences.importModuleSpecifier": "non-relative", | |
"window.titleBarStyle": "custom", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
{ | |
"language": "typescript" | |
}, | |
{ | |
"language": "typescriptreact" | |
} | |
], | |
"editor.formatOnSave": true, | |
"[elixir]": { | |
"editor.formatOnSave": false | |
}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"breadcrumbs.enabled": false, | |
"editor.renderWhitespace": "all", | |
"typescript.tsdk": "./frontend/node_modules/typescript/lib" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment