Skip to content

Commit 1421919

Browse files
committed
Merge remote-tracking branch 'origin/dev' into filter-errors
2 parents e0dbfe3 + 1c30f04 commit 1421919

22 files changed

Lines changed: 24 additions & 103 deletions

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ module.exports = {
7373
rules: {
7474
'vue/v-on-style': ['error', 'longform'],
7575
'vue/v-bind-style': ['error', 'longform'],
76+
'vue/no-unused-properties': ['error', {
77+
'groups': ['props', 'data', 'computed', 'methods', 'setup'],
78+
'deepData': true,
79+
'ignorePublicMembers': false
80+
}],
7681
'indent': ['error', 4],
7782
'vue/html-indent': ['error', 4, {
7883
'attribute': 1,

.github/workflows/preview.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ on:
44
push:
55
branches:
66
- main
7+
- dev
78
pull_request:
89
branches:
910
- main
11+
- dev
1012
workflow_dispatch:
1113

1214
jobs:
@@ -29,7 +31,7 @@ jobs:
2931
if [[ ${{ github.event_name }} == "pull_request" ]]; then
3032
export PUBLICPATH=PR${{ github.event.number }}
3133
else
32-
export PUBLICPATH=main
34+
export PUBLICPATH=$GITHUB_REF_NAME
3335
fi
3436
echo "PUBLICPATH=$PUBLICPATH" >> $GITHUB_ENV
3537
sed -i "s|publicPath: 'cff-initializer-javascript'|publicPath: '$PUBLICPATH'|" quasar.conf.js

images/00-landing.png

-82.6 KB
Binary file not shown.

images/01-start.png

-47.2 KB
Binary file not shown.

images/02-authors.png

-93.7 KB
Binary file not shown.

images/03-identifiers.png

-82.4 KB
Binary file not shown.

images/04-related-resources.png

-84.4 KB
Binary file not shown.

images/05-abstract.png

-73.6 KB
Binary file not shown.

images/06-keywords.png

-84.9 KB
Binary file not shown.

images/07-license.png

-80.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)