mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 16:22:39 +10:00
* feat: database redist support * feat: rearchitecture of database schemas, migration reset, and #180 * feat: import redists * fix: giantbomb logging bug * feat: partial user platform support + statusMessage -> message * feat: add user platform filters to store view * fix: sanitize svg uploads ... copilot suggested this I feel dirty. * feat: beginnings of platform & redist management * feat: add server side redist patching * fix: update drop-base commit * feat: import of custom platforms & file extensions * fix: redelete platform * fix: remove platform * feat: uninstall commands, new R UI * checkpoint: before migrating to nuxt v4 * update to nuxt 4 * fix: fixes for Nuxt v4 update * fix: remaining type issues * feat: initial feedback to import other kinds of versions * working commit * fix: lint * feat: redist import
35 lines
935 B
JavaScript
35 lines
935 B
JavaScript
// @ts-check
|
|
import withNuxt from "./.nuxt/eslint.config.mjs";
|
|
import eslintConfigPrettier from "eslint-config-prettier/flat";
|
|
import vueI18n from "@intlify/eslint-plugin-vue-i18n";
|
|
|
|
export default withNuxt([
|
|
eslintConfigPrettier,
|
|
|
|
// vue-i18n plugin
|
|
...vueI18n.configs.recommended,
|
|
{
|
|
rules: {
|
|
// Optional.
|
|
"@intlify/vue-i18n/no-dynamic-keys": "error",
|
|
"@intlify/vue-i18n/no-unused-keys": [
|
|
"off",
|
|
{
|
|
extensions: [".js", ".vue", ".ts"],
|
|
},
|
|
],
|
|
"@intlify/vue-i18n/no-missing-keys": "error",
|
|
"vue/multi-word-component-names": "off",
|
|
},
|
|
settings: {
|
|
"vue-i18n": {
|
|
localeDir: "./i18n/locales/*.{json,json5,ts,js}", // extension is glob formatting!
|
|
|
|
// Specify the version of `vue-i18n` you are using.
|
|
// If not specified, the message will be parsed twice.
|
|
messageSyntaxVersion: "^11.0.0",
|
|
},
|
|
},
|
|
},
|
|
]);
|