Skip to content

Commit ef6ae5e

Browse files
committed
Formatting and VSCode utils
1 parent c0bd205 commit ef6ae5e

File tree

3 files changed

+1023
-0
lines changed

3 files changed

+1023
-0
lines changed

.prettierrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-04/schema#",
3+
"trailingComma": "none",
4+
"tabWidth": 2,
5+
"semi": false,
6+
"singleQuote": true,
7+
"printWidth": 120,
8+
"useTabs": false,
9+
"bracketSpacing": true,
10+
"proseWrap": "preserve",
11+
"plugins": [],
12+
"overrides": [
13+
{
14+
"files": "*.svelte",
15+
"options": {
16+
"parser": "svelte"
17+
}
18+
}
19+
]
20+
}

.vscode/extensions.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"dbaeumer.vscode-eslint",
4+
"svelte.svelte-vscode",
5+
"esbenp.prettier-vscode",
6+
"firsttris.vscode-jest-runner"
7+
]
8+
}

0 commit comments

Comments
 (0)