Skip to content

Commit 6df46cc

Browse files
committed
Popup is missing but main view is available; some styling still needed
1 parent a3c0ee2 commit 6df46cc

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

+3570
-9830
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/dist
2+
/src-capacitor
3+
/src-cordova
4+
/.quasar
5+
/node_modules
6+
.eslintrc.js
7+
/quasar.config.*.temporary.compiled*

.eslintrc.cjs

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
module.exports = {
2+
// https://eslint.org/docs/user-guide/configuring#configuration-cascading-and-hierarchy
3+
// This option interrupts the configuration hierarchy at this file
4+
// Remove this if you have an higher level ESLint config file (it usually happens into a monorepos)
5+
root: true,
6+
7+
parserOptions: {
8+
ecmaVersion: 2021, // Allows for the parsing of modern ECMAScript features
9+
},
10+
11+
env: {
12+
node: true,
13+
browser: true,
14+
'vue/setup-compiler-macros': true
15+
},
16+
17+
// Rules order is important, please avoid shuffling them
18+
extends: [
19+
// Base ESLint recommended rules
20+
// 'eslint:recommended',
21+
22+
// Uncomment any of the lines below to choose desired strictness,
23+
// but leave only one uncommented!
24+
// See https://eslint.vuejs.org/rules/#available-rules
25+
'plugin:vue/vue3-essential', // Priority A: Essential (Error Prevention)
26+
// 'plugin:vue/vue3-strongly-recommended', // Priority B: Strongly Recommended (Improving Readability)
27+
// 'plugin:vue/vue3-recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)
28+
29+
// https://github.com/prettier/eslint-config-prettier#installation
30+
// usage with Prettier, provided by 'eslint-config-prettier'.
31+
'prettier'
32+
],
33+
34+
plugins: [
35+
// https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-files
36+
// required to lint *.vue files
37+
'vue',
38+
39+
// https://github.com/typescript-eslint/typescript-eslint/issues/389#issuecomment-509292674
40+
// Prettier has not been included as plugin to avoid performance impact
41+
// add it as an extension for your IDE
42+
43+
],
44+
45+
globals: {
46+
ga: 'readonly', // Google Analytics
47+
cordova: 'readonly',
48+
__statics: 'readonly',
49+
__QUASAR_SSR__: 'readonly',
50+
__QUASAR_SSR_SERVER__: 'readonly',
51+
__QUASAR_SSR_CLIENT__: 'readonly',
52+
__QUASAR_SSR_PWA__: 'readonly',
53+
process: 'readonly',
54+
Capacitor: 'readonly',
55+
chrome: 'readonly'
56+
},
57+
58+
// add your custom rules here
59+
rules: {
60+
61+
'prefer-promise-reject-errors': 'off',
62+
63+
// allow debugger during development only
64+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
65+
66+
'vue/no-v-text-v-html-on-component': 'off',
67+
}
68+
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
build/
44
node_modules/
55
/yarn-error.log
6+
.vscode
7+
.quasar

.npmrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# pnpm-related options
2+
shamefully-hoist=true
3+
strict-peer-dependencies=false
4+
# to get the latest compatible packages when creating the project https://github.com/pnpm/pnpm/issues/6463
5+
resolution-mode=highest

assets/components/LanguageSwitcher.vue

-40
This file was deleted.

assets/components/Main.vue

-146
This file was deleted.

assets/components/OwnGravatar.vue

-28
This file was deleted.

assets/components/VerticalMenu.vue

-38
This file was deleted.

0 commit comments

Comments
 (0)