Skip to content

Commit 527051f

Browse files
Format with prettier, fix some other issues
1 parent ef37991 commit 527051f

35 files changed

+2435
-6330
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,39 @@ updates:
44
directory: /
55
schedule:
66
interval: daily
7-
time: "08:00"
7+
time: '08:00'
88
timezone: Europe/Berlin
99
labels: []
1010
open-pull-requests-limit: 30
1111
ignore:
12-
- dependency-name: "node"
13-
- dependency-name: "@types/node"
14-
update-types: ["version-update:semver-major"]
15-
- dependency-name: "vuex"
16-
update-types: ["version-update:semver-major"]
12+
- dependency-name: 'node'
13+
- dependency-name: '@types/node'
14+
update-types: ['version-update:semver-major']
15+
- dependency-name: 'vuex'
16+
update-types: ['version-update:semver-major']
1717
groups:
1818
unhead:
1919
patterns:
20-
- "@unhead*"
20+
- '@unhead*'
2121
lodash:
2222
patterns:
23-
- "lodash*"
23+
- 'lodash*'
2424
vitest:
2525
patterns:
26-
- "vitest"
27-
- "@vitest/*"
26+
- 'vitest'
27+
- '@vitest/*'
2828
types:
2929
patterns:
30-
- "@types*"
30+
- '@types*'
3131
update-types:
32-
- "patch"
32+
- 'patch'
3333

3434
- package-ecosystem: docker
3535
directory: /
3636
schedule:
3737
interval: weekly
3838
commit-message:
39-
prefix: "[BUILD] "
39+
prefix: '[BUILD] '
4040
open-pull-requests-limit: 10
4141

4242
- package-ecosystem: github-actions

.prettierrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
22
"singleQuote": true,
3-
"trailingComma": "all",
4-
"semi": false
3+
"trailingComma": "all"
54
}

.vscode/extensions.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"recommendations": [
3-
"Vue.volar",
4-
"vitest.explorer"
5-
]
2+
"recommendations": ["Vue.volar", "vitest.explorer"]
63
}

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,18 @@ Please note that you might need to refresh the Activities page a couple of times
1616
- Please ensure that the FULL project can be run in your local environment
1717
- ⚠️ **Make sure not to publish your work on this repository.** ⚠️
1818

19-
2019
## Project Setup
20+
2121
1. Install dependencies using npm
22+
2223
```sh
2324
npm install
2425
```
2526

2627
### Compile and Hot-Reload for Development
28+
2729
2. Make sure you are able to run dev mode of application without any compile/runtime errors
30+
2831
```sh
2932
npm run dev
3033
```

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="">
33
<head>
4-
<meta charset="UTF-8">
5-
<link rel="icon" href="/favicon.ico">
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Vite App</title>
88
</head>
99
<body>

0 commit comments

Comments
 (0)