diff --git a/.eslintrc.js b/.eslintrc.js index b86b1e7..4bd3d60 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -16,6 +16,7 @@ module.exports = { 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 'vue/no-deprecated-slot-attribute': 'off', '@typescript-eslint/no-explicit-any': 'off', + 'vue/multi-word-component-names': 'off', }, overrides: [ { diff --git a/src/router/index.ts b/src/router/index.ts index 5a95d9b..99c6659 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -56,11 +56,6 @@ const routes: Array = [ name: 'Blurry Wallpapers', component: Blurry_Wallpapers, }, - { - path: '/details/Tipper_by_myCALC', - name: 'Tipper by myCALC', - component: Tipper_by_myCALC, - }, { path: '/details/PufferIcons_Filled', name: 'PufferIcons Filled', @@ -71,11 +66,6 @@ const routes: Array = [ name: 'WallCat', component: WallCat, }, - { - path: '/details/Tipper3', - name: 'Tipper3', - component: Tipper3, - }, { path: '/details/BetterAperture', name: 'BetterAperture', diff --git a/src/views/Apps.vue b/src/views/Apps.vue index 6c67b1d..276c0b0 100644 --- a/src/views/Apps.vue +++ b/src/views/Apps.vue @@ -24,7 +24,7 @@

Puffercat Apps

-

v1.0.0-b3 (Beta 3)

+

v1.0.0-b4 (Beta 4)



@@ -90,15 +90,15 @@ - - + + - + -

PufferIcons

+

PufferIcons

- +
@@ -109,15 +109,15 @@
- - + + -

Puffercat Apps

+

Puffercat Apps

- +
@@ -198,28 +198,12 @@
- - - - - - -

Tipper by myCALC

-
- - - -
- - - -
- + + - - \ No newline at end of file diff --git a/src/views/Tipper_by_myCALC.vue b/src/views/Tipper_by_myCALC.vue deleted file mode 100644 index 51e98ec..0000000 --- a/src/views/Tipper_by_myCALC.vue +++ /dev/null @@ -1,200 +0,0 @@ - - - - - \ No newline at end of file diff --git a/tests/e2e/.eslintrc.js b/tests/e2e/.eslintrc.js index 72e6bbf..6fec7b2 100644 --- a/tests/e2e/.eslintrc.js +++ b/tests/e2e/.eslintrc.js @@ -7,6 +7,7 @@ module.exports = { 'cypress/globals': true }, rules: { + 'vue/multi-word-component-names': 'off', strict: 'off' } }