Skip to content

Commit

Permalink
Merge main viewer changes and functionality. (#56)
Browse files Browse the repository at this point in the history
* Material store and base ui setup

* Major viewer changes, added UI elements and interaction.

* integration with stores

---------

Co-authored-by: Abhinav Bhardwaj <[email protected]>
Co-authored-by: fabianlinkflink <[email protected]>
  • Loading branch information
3 people authored Feb 15, 2024
1 parent c97e2f8 commit 9e82a99
Show file tree
Hide file tree
Showing 83 changed files with 16,605 additions and 18,131 deletions.
20 changes: 10 additions & 10 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier/skip-formatting',
],
parserOptions: {
ecmaVersion: 'latest',
},
root: true,
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier/skip-formatting'
],
parserOptions: {
ecmaVersion: 'latest'
}
}
32 changes: 32 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"singleQuote": true,
"useTabs": true,
"tabWidth": 2,
"vueIndentScriptAndStyle": true,
"embeddedLanguageFormatting": "auto",
"printWidth": 80,
"trailingComma": "none",
"overrides": [
{
"files": "*.md",
"options": {
"parser": "markdown",
"proseWrap": "never"
}
},
{
"files": "*.json, *.json5",
"options": {
"parser": "json"
}
},
{
"files": "*.yml, *.yaml",
"options": {
"parser": "yaml"
}
}
]
}
17 changes: 0 additions & 17 deletions .prettierrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion firestore.rules
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ service cloud.firestore {

// Updated until the end of January.
match /{document=**} {
allow read, write: if request.time < timestamp.date(2024, 1, 31); // TODO Revisit in January.
allow read, write: if request.time < timestamp.date(2024, 4, 31); // TODO Revisit in April.
}
}
}
32 changes: 0 additions & 32 deletions functions/.eslintrc.js

This file was deleted.

9 changes: 0 additions & 9 deletions functions/.gitignore

This file was deleted.

Loading

0 comments on commit 9e82a99

Please sign in to comment.