Skip to content

Commit 3b23aa8

Browse files
🚨 auto fix by pre-commit hooks
1 parent 47b8291 commit 3b23aa8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+3913
-3603
lines changed

frontend/.eslintrc.cjs

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/* eslint-env node */
2-
require('@rushstack/eslint-patch/modern-module-resolution')
2+
require("@rushstack/eslint-patch/modern-module-resolution");
33

44
module.exports = {
55
root: true,
66
extends: [
7-
'plugin:vue/vue3-essential',
8-
'eslint:recommended',
9-
'@vue/eslint-config-typescript',
10-
'@vue/eslint-config-prettier/skip-formatting'
7+
"plugin:vue/vue3-essential",
8+
"eslint:recommended",
9+
"@vue/eslint-config-typescript",
10+
"@vue/eslint-config-prettier/skip-formatting",
1111
],
1212
parserOptions: {
13-
ecmaVersion: 'latest'
14-
}
15-
}
13+
ecmaVersion: "latest",
14+
},
15+
};

frontend/openapi-ts.config.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import { defineConfig } from '@hey-api/openapi-ts'
1+
import { defineConfig } from "@hey-api/openapi-ts";
22

33
export default defineConfig({
4-
client: '@hey-api/client-fetch',
5-
input: '../openapi.json',
4+
client: "@hey-api/client-fetch",
5+
input: "../openapi.json",
66
output: {
7-
format: 'prettier',
8-
path: './src/client/api'
7+
format: "prettier",
8+
path: "./src/client/api",
99
},
1010
services: {
11-
asClass: true
12-
}
13-
})
11+
asClass: true,
12+
},
13+
});

frontend/postcss.config.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export default {
22
plugins: {
3-
'postcss-import': {},
4-
'tailwindcss/nesting': 'postcss-nesting',
3+
"postcss-import": {},
4+
"tailwindcss/nesting": "postcss-nesting",
55
tailwindcss: {},
6-
autoprefixer: {}
7-
}
8-
}
6+
autoprefixer: {},
7+
},
8+
};

frontend/src/App.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<script setup lang="ts">
2-
import { RouterView } from 'vue-router'
3-
import ToastItem from '@/components/ToastItem.vue'
4-
import { useToastStore } from '@/stores'
2+
import { RouterView } from "vue-router";
3+
import ToastItem from "@/components/ToastItem.vue";
4+
import { useToastStore } from "@/stores";
55
6-
const store = useToastStore()
6+
const store = useToastStore();
77
</script>
88

99
<template>

frontend/src/assets/main.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import 'material-symbols';
1+
@import "material-symbols";
22

33
@tailwind base;
44
@tailwind components;

frontend/src/client/api/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// This file is auto-generated by @hey-api/openapi-ts
2-
export * from './schemas.gen'
3-
export * from './services.gen'
4-
export * from './types.gen'
2+
export * from "./schemas.gen";
3+
export * from "./services.gen";
4+
export * from "./types.gen";

0 commit comments

Comments
 (0)