Skip to content

Extensions

Guilherme Guedes da Luz edited this page Jun 7, 2020 · 1 revision

Extensions

Extensions for Visual Studio Code

EditorConfig

This plugin attempts to override user/workspace settings with settings found in .editorconfig files.

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

ESLint

Integrates ESLint into VS Code.

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"
]

Material Icon Theme

Get the Material Design icons into your VS Code.

Greatly improves the icons of your project files.

SQLite

VSCode extension to explore and query SQLite databases.

Not much to say, allows SQLite navigation inside your VS Code.

Clone this wiki locally