-
-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy path.prettierrc.yaml
More file actions
32 lines (32 loc) · 685 Bytes
/
.prettierrc.yaml
File metadata and controls
32 lines (32 loc) · 685 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
printWidth: 140
plugins:
- prettier-plugin-svelte
singleQuote: true
tabWidth: 4
endOfLine: lf
overrides:
- files: '**/*.{yaml,yml}'
options:
tabWidth: 2
singleQuote: true
- files: '**/*.svelte'
options:
tabWidth: 2
- files: '**/*.json'
options:
tabWidth: 4
singleQuote: false
- files: '**/*.schema.json'
options:
tabWidth: 2
singleQuote: false
- files: '**/package.json'
options:
tabWidth: 2
singleQuote: false
- files: packages/client/src/**/configUpdater.ts
options:
printWidth: 200
- files: '**/*.{json,jsonc,md,code-snippets,code-workspace}'
options:
trailingComma: none