Skip to content

Commit

Permalink
Removing unecessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
dws4 committed Jun 11, 2024
1 parent d1a054e commit 0fc9f5f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 83 deletions.
4 changes: 3 additions & 1 deletion service/src/main/frontend/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ module.exports = {

// add your custom rules here
rules: {
"@typescript-eslint/no-unused-vars": "off",
// Allows different null assertions and types to be utilized
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',

'prefer-promise-reject-errors': 'off',
Expand All @@ -77,6 +78,7 @@ module.exports = {
// this rule, if on, would require explicit return type on the `render` function
'@typescript-eslint/explicit-function-return-type': 'off',

// allows to define an 'any' component
'@typescript-eslint/no-explicit-any': 'off',

// in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
Expand Down
15 changes: 0 additions & 15 deletions service/src/main/frontend/src/assets/quasar-logo-vertical.svg

This file was deleted.

58 changes: 0 additions & 58 deletions service/src/main/frontend/src/components/ExampleComponent.vue

This file was deleted.

10 changes: 1 addition & 9 deletions service/src/main/frontend/src/router/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,7 @@ import { RouteRecordRaw } from 'vue-router';
const routes: RouteRecordRaw[] = [
{
path: '/',
component: () => import('layouts/MainLayout.vue'), // Change to MainLayout to see example
children: [{ path: '', component: () => import('pages/IndexPage.vue') }],
},

// Always leave this as last one,
// but you can also remove it
{
path: '/:catchAll(.*)*',
component: () => import('pages/ErrorNotFound.vue'),
component: () => import('pages/IndexPage.vue'),
},
];

Expand Down

0 comments on commit 0fc9f5f

Please sign in to comment.