adjust lint config

This commit is contained in:
pa
2026-03-19 16:53:05 +09:00
parent 04ebfd0e78
commit cb7d6b78b3
11 changed files with 932 additions and 977 deletions

View File

@@ -1,4 +1,3 @@
/* eslint-disable pretty-import/sort-import-groups */
import { beforeEach, describe, expect, test, vi } from 'vitest';
import { createI18n } from 'vue-i18n';

View File

@@ -1434,6 +1434,7 @@
"sun": "Sun"
},
"easter_egg": "Did you farm your green squares today?",
"easter_egg_reply": "You can't farm this.",
"overlap": {
"header": "Online Overlap",
"peak_overlap": "Peak overlap:",

View File

@@ -1,4 +1,3 @@
/* eslint-disable pretty-import/sort-import-groups */
import { beforeEach, describe, expect, test, vi } from 'vitest';
import { createPinia, setActivePinia } from 'pinia';

View File

@@ -1,4 +1,3 @@
/* eslint-disable pretty-import/sort-import-groups */
import { beforeEach, describe, expect, test, vi } from 'vitest';
import { createPinia, setActivePinia } from 'pinia';

View File

@@ -1,4 +1,3 @@
/* eslint-disable pretty-import/sort-import-groups */
import { beforeEach, describe, expect, test, vi } from 'vitest';
import { createPinia, setActivePinia } from 'pinia';

6
src/types/vue-shim.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}