public-js/keep-updated

View on GitHub
.prettierrc

Summary

Maintainability
Test Coverage
{
    "printWidth": 120,
    "semi": true,
    "singleQuote": true,
    "tabWidth": 4,
    "trailingComma": "all",
    "useTabs": false,
    "overrides": [
        {
            "files": "*.html",
            "options": {
                "parser": "html",
                "singleQuote": false
            }
        },
        {
            "files": "*.ts",
            "options": {
                "parser": "typescript"
            }
        },
        {
            "files": "*.json",
            "options": {
                "singleQuote": false,
                "tabWidth": 2
            }
        },
        {
            "files": ["*.md", "*.yml", "*.yaml"],
            "options": {
                "tabWidth": 2
            }
        }
    ]
}