Skip to content

Commit 6b56e0a

Browse files
author
Hexalgo
committed
making progress
1 parent 9873e76 commit 6b56e0a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+7528
-5798
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
"dbaeumer.jshint",
1313
"ms-vscode.vscode-typescript-tslint-plugin"
1414
]
15-
}
15+
}

.vscode/settings.json

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,6 @@
33
"editor.guides.bracketPairs": true,
44
"editor.formatOnSave": true,
55
"editor.defaultFormatter": "esbenp.prettier-vscode",
6-
"editor.codeActionsOnSave": [
7-
"source.fixAll.eslint"
8-
],
9-
"eslint.validate": [
10-
"javascript",
11-
"javascriptreact",
12-
"typescript",
13-
"vue"
14-
]
15-
}
6+
"editor.codeActionsOnSave": ["source.fixAll.eslint"],
7+
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"]
8+
}

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,41 @@
33
webui for pyd2bot
44

55
## Install the dependencies
6+
67
```bash
78
yarn
89
# or
910
npm install
1011
```
1112

1213
### Start the app in development mode (hot-code reloading, error reporting, etc.)
14+
1315
```bash
1416
quasar dev
1517
```
1618

17-
1819
### Lint the files
20+
1921
```bash
2022
yarn lint
2123
# or
2224
npm run lint
2325
```
2426

25-
2627
### Format the files
28+
2729
```bash
2830
yarn format
2931
# or
3032
npm run format
3133
```
3234

33-
34-
3535
### Build the app for production
36+
3637
```bash
3738
quasar build
3839
```
3940

4041
### Customize the configuration
42+
4143
See [Configuring quasar.config.js](https://v2.quasar.dev/quasar-cli-vite/quasar-config-js).

index.html

Lines changed: 33 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,40 @@
33
<head>
44
<title><%= productName %></title>
55

6-
<meta charset="utf-8">
7-
<meta name="description" content="<%= productDescription %>">
8-
<meta name="format-detection" content="telephone=no">
9-
<meta name="msapplication-tap-highlight" content="no">
10-
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
6+
<meta charset="utf-8" />
7+
<meta name="description" content="<%= productDescription %>" />
8+
<meta name="format-detection" content="telephone=no" />
9+
<meta name="msapplication-tap-highlight" content="no" />
10+
<meta
11+
name="viewport"
12+
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"
13+
/>
1114

12-
<link rel="icon" type="image/png" sizes="128x128" href="icons/favicon-128x128.png">
13-
<link rel="icon" type="image/png" sizes="96x96" href="icons/favicon-96x96.png">
14-
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
15-
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
16-
<link rel="icon" type="image/ico" href="favicon.ico">
15+
<link
16+
rel="icon"
17+
type="image/png"
18+
sizes="128x128"
19+
href="icons/favicon-128x128.png"
20+
/>
21+
<link
22+
rel="icon"
23+
type="image/png"
24+
sizes="96x96"
25+
href="icons/favicon-96x96.png"
26+
/>
27+
<link
28+
rel="icon"
29+
type="image/png"
30+
sizes="32x32"
31+
href="icons/favicon-32x32.png"
32+
/>
33+
<link
34+
rel="icon"
35+
type="image/png"
36+
sizes="16x16"
37+
href="icons/favicon-16x16.png"
38+
/>
39+
<link rel="icon" type="image/ico" href="favicon.ico" />
1740
</head>
1841
<body>
1942
<!-- quasar:entry-point -->

jsconfig.json

Lines changed: 11 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,16 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"paths": {
5-
"src/*": [
6-
"src/*"
7-
],
8-
"app/*": [
9-
"*"
10-
],
11-
"components/*": [
12-
"src/components/*"
13-
],
14-
"layouts/*": [
15-
"src/layouts/*"
16-
],
17-
"pages/*": [
18-
"src/pages/*"
19-
],
20-
"assets/*": [
21-
"src/assets/*"
22-
],
23-
"boot/*": [
24-
"src/boot/*"
25-
],
26-
"stores/*": [
27-
"src/stores/*"
28-
],
29-
"vue$": [
30-
"node_modules/vue/dist/vue.runtime.esm-bundler.js"
31-
]
5+
"src/*": ["src/*"],
6+
"app/*": ["*"],
7+
"components/*": ["src/components/*"],
8+
"layouts/*": ["src/layouts/*"],
9+
"pages/*": ["src/pages/*"],
10+
"assets/*": ["src/assets/*"],
11+
"boot/*": ["src/boot/*"],
12+
"stores/*": ["src/stores/*"],
13+
"vue$": ["node_modules/vue/dist/vue.runtime.esm-bundler.js"]
3214
}
3315
},
34-
"exclude": [
35-
"dist",
36-
".quasar",
37-
"node_modules"
38-
]
39-
}
16+
"exclude": ["dist", ".quasar", "node_modules"]
17+
}

0 commit comments

Comments
 (0)