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

.prettierrc - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65017653a730eec3dbe62018bf12b6d2ef1a361f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  "singleQuote": true,
  "semi": true,
  "tabWidth": 2,
  "useTabs": false,
  "trailingComma": "es5",
  "overrides": [
    {
      "files": "*.json",
      "options": {
        "useTabs": false,
        "parser": "json"
      }
    },
    {
      "files": "*.scss",
      "options": {
        "useTabs": false,
        "parser": "scss"
      }
    },
    {
      "files": "*.less",
      "options": {
        "useTabs": false,
        "parser": "less"
      }
    }
  ],
  "twigPrintWidth": 120,
  "twigMultiTags": [
    "if,endif",
    "nav,endnav",
    "switch,case,default,endswitch",
    "ifchildren,endifchildren",
    "cache,endcache",
    "js,endjs"
  ],
  "plugins": [
    "./node_modules/prettier-plugin-twig-melody"
  ]
}