mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* feat: small library tweaks + company page * feat: new store view * fix: ci merge error * feat: add genres to store page * feat: sorting * feat: lock game/version imports while their tasks are running * feat: feature games * feat: tag based filtering * fix: make tags alphabetical * refactor: move a bunch of i18n to common * feat: add localizations for everything * fix: title description on panel * fix: feature carousel text * fix: i18n footer strings * feat: add tag page * fix: develop merge * feat: offline games support (don't error out if provider throws) * feat: tag management * feat: show library next to game import + small fixes * feat: most of the company and tag managers * feat: company text field editing * fix: small fixes + tsgo experiemental * feat: upload icon and banner * feat: store infinite scrolling and bulk import mode * fix: lint * fix: add drop-base to prettier ignore
34 lines
888 B
JavaScript
34 lines
888 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",
|
|
},
|
|
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",
|
|
},
|
|
},
|
|
},
|
|
]);
|