Created
May 30, 2021 18:02
-
-
Save harrisoncramer/f26b335ede17885235ed6800fbb39930 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"diagnostic.showUnused": false, | |
"diagnostic.messageDelay": 0, | |
"diagnostic.errorSign": "✘", | |
"diagnostic.warningSign": "⚑", | |
"diagnostic.infoSign": "", | |
/*"suggest.noselect": true, // Select first element in autocomplete list*/ | |
// Turn off styling, use plugins instead | |
"css.validate": false, | |
"less.validate": false, | |
"scss.validate": false, | |
"tsserver.log": "verbose", | |
"tsserver.trace.server": "verbose", | |
// Set linting for postgresql databases | |
"sql.database": "postgresql", | |
"typescript.showUnused": false, | |
"languageserver": { | |
"terraform": { | |
"command": "terraform-lsp", | |
"filetypes": ["terraform", "tf"], | |
"initializationOptions": {} | |
} | |
}, | |
"python.jediEnabled": false, | |
"coc.preferences.formatOnSaveFiletypes": [ | |
"css", | |
"markdown", | |
"javascript", | |
"typescript", | |
"typescriptreact", | |
"python", | |
"scss", | |
"html", | |
"graphql" | |
], | |
"eslint.probe": [ | |
"javascript", | |
"json", | |
"typescript", | |
"typescriptreact", | |
"javascriptreact" | |
], | |
"prettier.disableSuccessMessage": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment