forked from njnmco/odinochka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc.json
47 lines (46 loc) · 997 Bytes
/
.prettierrc.json
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
43
44
45
46
47
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"jsxBracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "ignore",
"vueIndentScriptAndStyle": true,
"endOfLine": "lf",
"overrides": [
{
"files": "*.php",
"options": {
"phpVersion": "7.1",
"braceStyle": "1tbs",
"trailingCommaPHP": true
}
},
{
"files": "*.html.twig",
"options": {
"twigMultiTags": [
"nav,endnav",
"switch,case,default,endswitch",
"ifchildren,endifchildren",
"cache,endcache",
"js,endjs"
]
}
},
{
"files": "*.md",
"options": {
"proseWrap": "always"
}
}
],
"twigMelodyPlugins": ["node_modules/prettier-plugin-twig-enhancements"]
}