forked from HuasoFoundries/phpPgAdmin6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierrc.js
More file actions
43 lines (40 loc) · 719 Bytes
/
.prettierrc.js
File metadata and controls
43 lines (40 loc) · 719 Bytes
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
module.exports = {
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"]
};