aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/.prettierrc
blob: e857c65b5e54b56949e04ccbd156523f9f2c1612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "useTabs": false,
  "singleQuote": true,
  "trailingComma": "all",
  "printWidth": 100,
  "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
  "overrides": [
    {
      "files": "*.svelte",
      "options": {
        "parser": "svelte"
      }
    }
  ],
  "tailwindStylesheet": "./src/routes/layout.css"
}