-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc
42 lines (40 loc) · 933 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
38
39
40
41
42
{
"bracketSameLine": true,
"bracketSpacing": true,
"singleAttributePerLine": true,
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
],
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-embed",
"prettier-plugin-sql"
],
"embeddedLanguageFormatting": "auto",
"denseOperators": false,
"newlineBeforeSemicolon": true,
"keywordCase": "upper",
"dataTypeCase": "lower",
"functionCase": "upper",
"identifierCase": "lower",
"language": "sqlite",
"expressionWidth": 25,
"linesBetweenQueries": 0,
"arrowParens": "always",
"printWidth": 80,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"svelteAllowShorthand": true,
"svelteIndentScriptAndStyle": false,
"svelteSortOrder": "options-scripts-markup-styles",
"svelteStrictMode": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
}