forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc
43 lines (43 loc) · 2.13 KB
/
.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
43
{
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid",
"phpVersion": "8.1",
"braceStyle": "1tbs",
"endOfLine": "lf",
"sqlKeywordCase": "upper",
"overrides": [
{
"files": [
"solution/0500-0599/0578.Get Highest Answer Rate Question/Solution.sql",
"solution/0600-0699/0610.Triangle Judgement/Solution.sql",
"solution/0600-0699/0618.Students Report By Geography/Solution.sql",
"solution/0600-0699/0626.Exchange Seats/Solution.sql",
"solution/1000-1099/1097.Game Play Analysis V/Solution.sql",
"solution/1000-1099/1098.Unpopular Books/Solution.sql",
"solution/1100-1199/1113.Reported Posts/Solution.sql",
"solution/1100-1199/1127.User Purchase Platform/Solution.sql",
"solution/1100-1199/1174.Immediate Food Delivery II/Solution.sql",
"solution/1100-1199/1193.Monthly Transactions I/Solution.sql",
"solution/1200-1299/1205.Monthly Transactions II/Solution.sql",
"solution/1300-1399/1384.Total Sales Amount by Year/Solution.sql",
"solution/1300-1399/1322.Ads Performance/Solution.sql",
"solution/1300-1399/1398.Customers Who Bought Products A and B but Not C/Solution.sql",
"solution/1400-1499/1479.Sales by Day of the Week/Solution.sql",
"solution/1500-1599/1501.Countries You Can Safely Invest In/Solution.sql",
"solution/1500-1599/1555.Bank Account Summary/Solution.sql",
"solution/1600-1699/1667.Fix Names in a Table/Solution.sql",
"solution/1900-1999/1972.First and Last Call On the Same Day/Solution.sql",
"solution/2600-2699/2686.Immediate Food Delivery III/Solution.sql",
"solution/2700-2799/2752.Customers with Maximum Number of Transactions on Consecutive Days/Solution.sql"
],
"options": {
"parser": "bigquery"
}
}
]
}