forked from facebook/react-native-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierrc
37 lines (37 loc) · 797 Bytes
/
.prettierrc
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
{
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
},
{
"files": ["website/core/**/*.js", "website/static/js/**/*.js"],
"options": {
"arrowParens": "avoid",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5"
}
},
{
"files": [
"docs/**/*.md",
"website/versioned_docs/**/*.md",
"website/blog/**/*.md"
],
"options": {
"arrowParens": "always",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"printWidth": 80,
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5"
}
}
]
}