We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce5664e commit c313c5bCopy full SHA for c313c5b
.prettierrc.json
@@ -5,5 +5,31 @@
5
"semi": false,
6
"singleQuote": true,
7
"arrowParens": "avoid",
8
- "printWidth": 100
+ "printWidth": 100,
9
+ "trailingComma": "es5",
10
+ "bracketSameLine": false,
11
+ "endOfLine": "auto",
12
+ "overrides": [
13
+ {
14
+ "files": ["**/*.yml", "**/*.yaml"],
15
+ "options": {
16
+ "parser": "yaml",
17
+ "tabWidth": 2,
18
+ "useTabs": false
19
+ }
20
+ },
21
22
+ "files": "**/*.ts",
23
24
+ "parser": "typescript"
25
26
27
28
+ "files": "**/*.svelte",
29
30
+ "parser": "svelte",
31
+ "plugins": ["prettier-plugin-svelte"]
32
33
34
+ ]
35
}
0 commit comments