mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
lint fixes
This commit is contained in:
parent
b5d07427f5
commit
91781722b7
@ -43,7 +43,7 @@ module.exports = {
|
||||
'vue/multi-word-component-names': [
|
||||
'error',
|
||||
{
|
||||
ignores: ['default', 'index.page'],
|
||||
ignores: ['+Page'],
|
||||
},
|
||||
],
|
||||
// Optional eslint-comments rule
|
||||
|
||||
@ -2,5 +2,5 @@
|
||||
export default {
|
||||
clientRouting: true,
|
||||
prefetchStaticAssets: 'viewport',
|
||||
passToClient: ['pageProps', /* 'urlPathname', */ 'routeParams']
|
||||
passToClient: ['pageProps', /* 'urlPathname', */ 'routeParams'],
|
||||
}
|
||||
@ -2,7 +2,7 @@ import { VueWrapper, mount } from '@vue/test-utils'
|
||||
import { describe, it, expect, beforeEach } from 'vitest'
|
||||
import { ComponentPublicInstance } from 'vue'
|
||||
|
||||
import ErrorPage from './_error.page.vue'
|
||||
import ErrorPage from './+Page.vue'
|
||||
|
||||
describe('ErrorPage', () => {
|
||||
let wrapper: VueWrapper<unknown, ComponentPublicInstance<unknown, Omit<unknown, never>>>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user