forked from AlexRogalskiy/android-patterns
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.prettierrc.yaml
More file actions
37 lines (37 loc) · 779 Bytes
/
.prettierrc.yaml
File metadata and controls
37 lines (37 loc) · 779 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
$schema: http://json.schemastore.org/prettierrc
printWidth: 110
tabWidth: 4
useTabs: false
endOfLine: lf
semi: false
singleQuote: true
quoteProps: 'consistent'
jsxSingleQuote: false
trailingComma: 'all'
bracketSpacing: true
jsxBracketSameLine: true
arrowParens: 'avoid'
proseWrap: 'always'
overrides:
- files:
- '*.html'
- 'legacy/**/*.js'
options:
semi: true
- files: '**/*.json*'
options:
parser: json
proseWrap: 'always'
- files: '**/*.md*'
options:
parser: markdown
proseWrap: 'always'
- files: '**/*.{yaml,yml}*'
options:
parser: yaml
tabWidth: 2
printWidth: 80
- files: '**/.all-(contributorsrc|membersrc|sponsorsrc)'
options:
parser: 'json-stringify'
singleQuote: false