-
Notifications
You must be signed in to change notification settings - Fork 0
Extensions
Extensions for Visual Studio Code
This plugin attempts to override user/workspace settings with settings found in .editorconfig files.
- https://editorconfig.org/
- https://github.com/editorconfig/
- https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig
It's a plugin, in this case for VSCode, that tries to override your code editor or IDE configurations with the ones inside a .editorconfig file inside your projects root folder.
File example:
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
Integrates ESLint into VS Code.
- https://github.com/Microsoft/vscode-eslint
- https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
Just the extension part of ESLint, the entire configuration is described in the ESLint section.
You can turn it on by placing the following code inside your VSCode settings.json file (Ctrl+Shift+P ==> "Preferences: Open Settings (JSON)").
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]Get the Material Design icons into your VS Code.
- https://github.com/PKief/vscode-material-icon-theme
- https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme
Greatly improves the icons of your project files.
VSCode extension to explore and query SQLite databases.
- https://github.com/AlexCovizzi/vscode-sqlite
- https://marketplace.visualstudio.com/items?itemName=alexcvzz.vscode-sqlite
Not much to say, allows SQLite navigation inside your VS Code.