Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.07 KB

vscode.md

File metadata and controls

31 lines (23 loc) · 1.07 KB

VS Code Config

Our team use this editor as IDE. Here are some useful configs and extensions we use

Code Formatter

We encourage the use of prettier in your editor for consistent code style.

Settings.json

// Settings we use to overwrite the default ones
{
    "editor.rulers": [120],
    "editor.renderWhitespace": "boundary",
    "editor.dragAndDrop": true,

    // settings for `relative path` extension
    "relativePath.removeExtension": true,
    "relativePath.removeLeadingDot": true
}

Extensions