Skip to content

Commit 86fba08

Browse files
committed
add .prettierrc
1 parent 156b7e9 commit 86fba08

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.prettierrc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"semi": false,
3+
"arrowParens": "avoid",
4+
"printWidth": 120,
5+
"trailingComma": "all",
6+
"useTabs": false,
7+
"quoteProps": "preserve",
8+
"overrides": [
9+
{
10+
"files": [".vscode/*.json"],
11+
"options": {
12+
"parser": "jsonc",
13+
"quoteProps": "preserve",
14+
"singleQuote": false,
15+
"trailingComma": "all"
16+
}
17+
},
18+
{
19+
"files": ["*.md"],
20+
"options": {
21+
"printWidth": 80
22+
}
23+
}
24+
]
25+
}

0 commit comments

Comments
 (0)