@dargmuesli/nuxt-vio 20.0.0-beta.8 → 20.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.config/lint.js CHANGED
@@ -36,6 +36,13 @@ export const VIO_ESLINT_CONFIG = [
36
36
  },
37
37
  },
38
38
  rules: {
39
+ '@intlify/vue-i18n/no-missing-keys': 'error',
40
+ '@intlify/vue-i18n/no-raw-text': 'error',
41
+ '@intlify/vue-i18n/no-deprecated-i18n-component': 'error',
42
+ '@intlify/vue-i18n/no-deprecated-i18n-place-attr': 'error',
43
+ '@intlify/vue-i18n/no-deprecated-i18n-places-prop': 'error',
44
+ '@intlify/vue-i18n/no-i18n-t-path-prop': 'error',
45
+ '@intlify/vue-i18n/valid-message-syntax': 'error',
39
46
  '@intlify/vue-i18n/key-format-style': 'error',
40
47
  '@intlify/vue-i18n/no-duplicate-keys-in-locale': 'error',
41
48
  '@intlify/vue-i18n/no-dynamic-keys': 'error',
@@ -44,7 +51,7 @@ export const VIO_ESLINT_CONFIG = [
44
51
  '@intlify/vue-i18n/no-unused-keys': 'error',
45
52
  '@intlify/vue-i18n/prefer-sfc-lang-attr': 'error',
46
53
  '@intlify/vue-i18n/prefer-linked-key-with-paren': 'error',
47
- // '@intlify/vue-i18n/sfc-locale-attr': 'error',
54
+ // '@intlify/vue-i18n/sfc-locale-attr': 'error', // TODO: evaluate if enabling this makes sense
48
55
 
49
56
  'yml/quotes': ['error', { prefer: 'single' }],
50
57
  },
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "dependencies": {
3
- "@dargmuesli/nuxt-cookie-control": "9.1.8",
3
+ "@dargmuesli/nuxt-cookie-control": "9.1.9",
4
4
  "@eslint/compat": "2.0.0",
5
5
  "@heroicons/vue": "2.2.0",
6
6
  "@http-util/status-i18n": "0.9.0",
7
7
  "@intlify/eslint-plugin-vue-i18n": "4.1.0",
8
- "@nuxt/devtools": "3.1.0",
8
+ "@nuxt/devtools": "3.1.1",
9
9
  "@nuxt/eslint": "1.10.0",
10
10
  "@nuxt/image": "2.0.0",
11
11
  "@nuxtjs/color-mode": "4.0.0",
@@ -114,5 +114,5 @@
114
114
  "start:static": "serve playground/.output/public --ssl-cert ./.config/certificates/ssl.crt --ssl-key ./.config/certificates/ssl.key"
115
115
  },
116
116
  "type": "module",
117
- "version": "20.0.0-beta.8"
117
+ "version": "20.0.0"
118
118
  }