Skip to content

Commit

Permalink
formatting frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
yuru_baku committed Feb 22, 2024
1 parent 2ca5cbd commit cc6f146
Show file tree
Hide file tree
Showing 21 changed files with 798 additions and 773 deletions.
2 changes: 2 additions & 0 deletions backend/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@

# To Run
```
docker pull mongodb/mongodb-community-server
sudo docker run --name infinity_deck -d -p 27017:27017 mongodb/mongodb-community-server:latest
Expand Down
4 changes: 2 additions & 2 deletions frontend-vue/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"tabWidth": 2,
"semi": true,
"tabWidth": 4,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "none"
Expand Down
2 changes: 1 addition & 1 deletion frontend-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
"format": "prettier --write src/ --config .prettierrc.json --cache"
},
"dependencies": {
"@ar-js-org/ar.js": "^3.4.5",
Expand Down
4 changes: 2 additions & 2 deletions frontend-vue/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { RouterLink, RouterView } from 'vue-router'
import { RouterLink, RouterView } from 'vue-router';
</script>

<template>
<RouterView></RouterView>
<RouterView></RouterView>
</template>

<style scoped></style>
Loading

0 comments on commit cc6f146

Please sign in to comment.