Skip to content

Commit e482388

Browse files
authored
chore: configure prettier for vscode (#1878)
1 parent 9930a41 commit e482388

File tree

3 files changed

+34
-25
lines changed

3 files changed

+34
-25
lines changed

.prettierrc

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"arrowParens": "avoid",
3+
"semi": false,
4+
"singleQuote": false,
5+
"useTabs": false,
6+
"tabWidth": 2,
7+
"overrides": [
8+
{
9+
"files": "*.svg",
10+
"options": { "parser": "html" }
11+
},
12+
{
13+
"files": "*.mdx",
14+
"options": {
15+
"proseWrap": "always",
16+
"semi": false,
17+
"trailingComma": "none"
18+
}
19+
}
20+
],
21+
"plugins": ["prettier-plugin-pkg"]
22+
}

.vscode/settings.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"eslint.format.enable": true,
3+
"editor.formatOnSave": true,
4+
"editor.defaultFormatter": "esbenp.prettier-vscode",
5+
"yaml.schemas": {
6+
"https://json.schemastore.org/github-workflow.json": ".github/workflows/**/*.yml"
7+
},
8+
"typescript.tsdk": "node_modules/typescript/lib",
9+
"[typescript]": {
10+
"editor.defaultFormatter": "esbenp.prettier-vscode"
11+
}
12+
}

prettier.config.js

-25
This file was deleted.

0 commit comments

Comments
 (0)