summaryrefslogtreecommitdiff
path: root/.prettierrc.json
blob: d5bbca6c4b81fe9b024ace9dc559777e26f3cd43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "printWidth": 180,
  "semi": true,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "es5",
  "useTabs": true,
  "overrides": [
    {
      "files": [".*", "*.json", "*.md", "*.toml", "*.yml"],
      "options": {
        "useTabs": false
      }
    }
  ],
  "pluginSearchDirs": ["./assets"]
}