Skip to content

Instantly share code, notes, and snippets.

@xgqfrms-GitHub
Created July 3, 2017 13:42
Show Gist options
  • Select an option

  • Save xgqfrms-GitHub/5a58d712341cb1c97caa6851b8193434 to your computer and use it in GitHub Desktop.

Select an option

Save xgqfrms-GitHub/5a58d712341cb1c97caa6851b8193434 to your computer and use it in GitHub Desktop.
VS Code & setting.json

VS Code

setting.json

    
// Place your settings in this file to overwrite the default settings
{
    "editor.tabSize": 4,
    "typescript.check.tscVersion": true,
    "files.autoSave": "off",
    "files.associations": {
        "*.js": "javascript",
        "*.jsx": "javascriptreact",
        "*.ts": "typescript",
        "*.scss": "sass",
        "*.json": "json"
    },
    "editor.trimAutoWhitespace": false,
    "editor.renderWhitespace": "all",
    "editor.tabCompletion": true,
    "editor.mouseWheelZoom": true,
    "editor.parameterHints": false,
    "editor.lineHeight": 24,
    "editor.fontSize": 14,
    "editor.formatOnSave": false,
    "editor.wordWrap": "on",
    "editor.wordWrapColumn": 80,
    "editor.wrappingIndent": "same",
    "html.format.enable": false,
    "html.format.extraLiners": "",
    "html.format.unformatted": "html, head, body, a, abbr, acronym, b, bdo, big, br, button, cite, code, dfn, em, i, img, input, kbd, label, map, object, q, samp, select, small, span, strong, sub, sup, textarea, tt, var",
    "html.format.wrapLineLength": 80,
    "html.format.wrapAttributes": "auto",
    "workbench.statusBar.visible": true,
    "workbench.iconTheme": "vscode-icons",
    "vsicons.presets.angular": false,
    "terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\cmd.exe",
    "[javascript]": {},
    "emmet.excludeLanguages": [
        "markdown",
        "json"
    ],
    "javascript.format.enable": false,
    "javascript.validate.enable": false,
    "eslint.enable": true,
    "[html]": {
        "editor.formatOnSave": false
    },
    "[json]": {
        "editor.formatOnSave": false
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment