Skip to content

Instantly share code, notes, and snippets.

@tkh44
Created April 19, 2023 19:31
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 tkh44/e563c14deb03f77a709053618c7240d1 to your computer and use it in GitHub Desktop.
Save tkh44/e563c14deb03f77a709053618c7240d1 to your computer and use it in GitHub Desktop.
VSCode settings
{
"security.workspace.trust.untrustedFiles": "open",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"workbench.colorTheme": "Noctis Azureus",
"git.autofetch": true,
"editor.minimap.enabled": false,
"typescript.preferences.importModuleSpecifier": "non-relative",
"editor.inlineSuggest.enabled": true,
"editor.fontSize": 14,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": true
},
"editor.guides.bracketPairs": "active",
"eslint.format.enable": true,
"eslint.ignoreUntitled": true,
"eslint.probe": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue",
"markdown",
"json"
],
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[python]": {
"editor.formatOnType": false,
},
"workbench.editor.untitled.hint": "hidden",
"editor.formatOnSave": true,
"git.enableSmartCommit": true,
"githubPullRequests.pushBranch": "always",
"eslint.codeActionsOnSave.rules": null,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment