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

.prettierrc.js - github.com/matsuyoshi30/harbor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99f09f6a280f4b4e1f9ed1a1da370e3a0e6aba33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  "trailingComma": "es5",
  "semi": false,
  "singleQuote": true,
  "overrides": [
    {
      "files": ["*.html"],
      "options": {
        "parser": "go-template"
      }
    }
  ]
};