Skip to content

Instantly share code, notes, and snippets.

@midnightcodr
Last active July 25, 2018 20:22
Show Gist options
  • Save midnightcodr/048d129b7aca3348503bfe2954f94be0 to your computer and use it in GitHub Desktop.
Save midnightcodr/048d129b7aca3348503bfe2954f94be0 to your computer and use it in GitHub Desktop.
Visual Studio Code settings for using standardjs

Extensions

ext install prettier-vscode
ext install prettier-standard-vscode
ext install vscode-standardjs

User Settings (CMD + , to activate)

{
    "editor.insertSpaces": true,
    "gitlens.advanced.messages": {
        "suppressShowKeyBindingsNotice": true,
        "suppressWelcomeNotice": true
    },
    "editor.tabSize": 2,
    "standard.autoFixOnSave": true,
    "javascript.validate.enable": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment