Last active
April 4, 2024 14:34
-
-
Save gaurangrshah/705660bb9d45873807f6ee00198e490c to your computer and use it in GitHub Desktop.
Vscode Settings Categories
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
{ | |
"editor.fontSize": 13, | |
"editor.fontFamily": "'Operator Mono Medium', 'Fira Code'", | |
"editor.fontLigatures": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"name": "comment", | |
"scope": ["comment"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Variable", | |
"scope": ["variable.language", "string.other.link.title.markdown"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Keyword, Storage", | |
"scope": [ | |
"keyword", | |
"storage.modifier", | |
"storage.type.class", | |
"storage.type.function" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Keyword Control", | |
"scope": ["keyword.control"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Storage Type", | |
"scope": ["storage.type"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Storage Type Function", | |
"scope": ["storage.type.function"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Storage Type Class", | |
"scope": ["storage.type.class"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
// | |
{ | |
"scope": [ | |
"keyword", | |
"storage.modifier", | |
"storage.type.class.js", | |
"storage.type.js" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Keyword Storage", | |
"scope": ["storage"], // variables let, const | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"name": "Entity", | |
"scope": ["entity.other.attribute-name", "entity.name.method"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": ["keyword.control.conditional", "keyword.operator"], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
} | |
] | |
}, | |
"editor.lineHeight": 20.3, | |
"editor.letterSpacing": 0.5, | |
} |
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
{ | |
"[astro]": { | |
"editor.defaultFormatter": "astro-build.astro-vscode" | |
}, | |
"[markdown]": { | |
"editor.formatOnSave": false, | |
"editor.quickSuggestions": { | |
"comments": "on", | |
"strings": "on", | |
"other": "on" | |
}, | |
"editor.wordWrap": "on" | |
}, | |
"[yaml]": { | |
"editor.defaultFormatter": "redhat.vscode-yaml" | |
}, | |
"[prisma]": { | |
"editor.defaultFormatter": "Prisma.prisma" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": false | |
} | |
} |
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
{ | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"eslint.enable": true, | |
"prettier.trailingComma": "es5", | |
"prettier.semi": true, | |
"prettier.singleQuote": true, | |
"prettier.jsxSingleQuote": false, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "always" | |
}, | |
"eslint.validate": ["javascript", "typescript"], | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "always" | |
} | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "always" | |
} | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "always" | |
} | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "always" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment