Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Commit d527f6d

Browse files
authored
Merge pull request #74 from davidnixon/fix-e2e-deps
chore: fix e2e and upgrade deps
2 parents b25a812 + bd00847 commit d527f6d

File tree

5 files changed

+5875
-8283
lines changed

5 files changed

+5875
-8283
lines changed

eslint.config.mjs

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,19 @@
11
// @ts-check
22
import stylistic from '@stylistic/eslint-plugin'
3+
// @ts-ignore
34
import tailwind from 'eslint-plugin-tailwindcss'
45
import pluginVue from 'eslint-plugin-vue'
56
import withNuxt from './.nuxt/eslint.config.mjs'
67

78
export default withNuxt([
8-
stylistic.configs['recommended-flat'],
9+
stylistic.configs['recommended'],
910
...tailwind.configs['flat/recommended'],
1011
...pluginVue.configs['flat/recommended'],
1112
{
1213
rules: {
1314
'vue/multi-word-component-names': 'off',
1415
'tailwindcss/no-custom-classname': 'off',
15-
'vue/component-tags-order': [
16-
'warn',
17-
{
18-
order: [
19-
'script',
20-
'template',
21-
'style',
22-
],
23-
},
24-
],
16+
'vue/block-order': 'warn',
2517
},
2618
},
2719
],

nuxt.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ export default defineNuxtConfig({
4747
detectBrowserLanguage: {
4848
useCookie: false,
4949
},
50+
bundle: {
51+
optimizeTranslationDirective: false,
52+
},
5053
locales: [
5154
{
5255
code: 'en',

0 commit comments

Comments
 (0)