{
    "folders": [
        {
            "path": "."
        }
    ],
    "settings": {
        // Linting
        "stylelint.enable": true,
        "css.validate": false,
        "scss.validate": false,
        "javascript.validate.enable": false,

        // Formatting
        "editor.defaultFormatter": "esbenp.prettier-vscode",
        "editor.tabSize": 4,
        "editor.insertSpaces": true,
        "editor.formatOnSave": true,

        // Trim on save
        "files.trimTrailingWhitespace": true,

        // Special file associations
        "files.associations": {
            ".eslintrc": "jsonc"
        },

        "editor.codeActionsOnSave": {
            "source.fixAll": true
        }
    }
}
