{
    "workbench.colorCustomizations": {
        "titleBar.activeForeground": "#000",
        "titleBar.inactiveForeground": "#000000CC",
        "titleBar.activeBackground": "#18AFDA",
        "titleBar.inactiveBackground": "#18AFDA"
    },
    // These are all my auto-save configs
    "editor.formatOnSave": true,
    "[javascript]": {
        "editor.formatOnSave": false,
        "editor.defaultFormatter": "dbaeumer.vscode-eslint"
    },
    "[javascriptreact]": {
        "editor.formatOnSave": false,
        "editor.defaultFormatter": "dbaeumer.vscode-eslint"
    },
    "[css]": {
        "editor.formatOnSave": false,
        "editor.defaultFormatter": "stylelint.vscode-stylelint"
    },
    "[scss]": {
        "editor.formatOnSave": false,
        "editor.defaultFormatter": "stylelint.vscode-stylelint"
    },
    "stylelint.customSyntax": "postcss-scss",
    "stylelint.validate": ["css", "less", "postcss", "scss"],
    "editor.formatOnPaste": true,
    "editor.codeActionsOnSave": {
        "source.fixAll": true
    },
    // Set Prettier as the default formatter
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    // Default the editor tab size to 4 (as defined by ES Lint / Style lint)
    "editor.tabSize": 4,
    // Don't have closing comments when using emmet
    "emmet.preferences": {
        "filter.commentAfter": ""
    },
    "css.validate": false,
    "less.validate": false,
    "scss.validate": false
}
