My Prettier Configuration

The Prettier Configuration I use for all my projects

This is the Prettier Configuration I got when this site was created using Gatsby around 2019 and I’ve stuck with it since then.

.prettierrc.json
{
    "endOfLine": "lf",
    "semi": true,
    "singleQuote": false,
    "tabWidth": 2,
    "trailingComma": "es5"
}