mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-11-27 00:00:23 +00:00
cb89d94228
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
12 lines
396 B
TypeScript
12 lines
396 B
TypeScript
import type { Linter } from 'eslint';
|
|
import { getBaseConfig, getTSVueConfig, getNodeFiles, unocss, getWorkerFiles } from '@jellyfin-vue/configs/eslint';
|
|
|
|
// TODO: Add missing rules for i18n and json
|
|
export default [
|
|
...getBaseConfig('@jellyfin-vue/frontend'),
|
|
...getTSVueConfig(true, import.meta.dirname),
|
|
...unocss,
|
|
...getNodeFiles(),
|
|
...getWorkerFiles()
|
|
] satisfies Linter.Config[];
|