Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.prettierrc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3384551aea52e685c72c9e48a96b3d7ef15a7fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "printWidth": 100,
  "singleQuote": true,
  "trailingComma": "es5",
  "overrides": [
    {
      "files": ["**/app/**/*", "**/spec/**/*"],
      "options": {
        "trailingComma": "all"
      }
    }
  ]
}