Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/PC388-62/zaak-modern' in…
Browse files Browse the repository at this point in the history
…to feature/configuration
  • Loading branch information
rubenvdlinde committed Oct 22, 2024
2 parents d930f7f + f563834 commit 4194d30
Show file tree
Hide file tree
Showing 112 changed files with 26,266 additions and 24,629 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"@babel/preset-env"
]
}
19 changes: 10 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
module.exports = {
extends: [
'@nextcloud',
],
rules: {
'jsdoc/require-jsdoc': 'off',
'vue/first-attribute-linebreak': 'off',
},
}
module.exports = {
extends: [
'@nextcloud',
],
rules: {
'jsdoc/require-jsdoc': 'off',
'vue/first-attribute-linebreak': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
}
27 changes: 15 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
/.idea/
/*.iml

/vendor/
/vendor-bin/*/vendor/

/.php-cs-fixer.cache
/tests/.phpunit.cache

/node_modules/
/js/
Zone.Identifier
/.idea/
/*.iml

/vendor/
/vendor-bin/*/vendor/
/composer.lock

/.php-cs-fixer.cache
/tests/.phpunit.cache

/node_modules/
/custom_apps/
/custom-apps/
/js/
Zone.Identifier
30 changes: 26 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
{
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true
}
{
"files.autoSave": "afterDelay",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"eslint.format.enable": true,
"cSpell.words": [
"depubliceren",
"Depubliceren",
"gedepubliceerd",
"Matadata",
"nextcloud",
"opencatalogi",
"organisation",
"Organisation",
"organisations",
"Organisations",
"pinia",
"Toegangs"
],
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
}
38 changes: 19 additions & 19 deletions DESIGN.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Open Catalog




## Modals

- only one modal may be active at all times
- modals should be abstract and reachable form anywhere
- modals should be places in te src/modals folder
- modals should be triggerd through the state
- modals should be (er)ussable oudise of the view contect and stered in src/modals/[modal-name]

## Views

- vieuws should be centered around a core object
- views should consist of a index, list and details page
- view files should be stored onder src/views/[view-name]

# Open Catalog




## Modals

- only one modal may be active at all times
- modals should be abstract and reachable form anywhere
- modals should be places in te src/modals folder
- modals should be triggered through the state
- modals should be (re)usable outside of the view content and stored in src/modals/[modal-name]

## Views

- views should be centered around a core object
- views should consist of a index, list and details page
- view files should be stored onder src/views/[view-name]

## Icons
Loading

0 comments on commit 4194d30

Please sign in to comment.