.prettierrc 309 Bytes
Newer Older
jim's avatar
jim committed
1 2
{
  "singleQuote": true,
何乐's avatar
何乐 committed
3
  "trailingComma": "all",
jim's avatar
jim committed
4
  "printWidth": 100,
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
5
  "proseWrap": "never",
jim's avatar
jim committed
6 7 8
  "overrides": [
    {
      "files": ".prettierrc",
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
9 10 11
      "options": {
        "parser": "json"
      }
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
12 13 14 15 16 17
    },
    {
      "files": "document.ejs",
      "options": {
        "parser": "html"
      }
jim's avatar
jim committed
18 19
    }
  ]
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
20
}