mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-06-18 04:59:03 +00:00
10 lines
346 B
TypeScript
10 lines
346 B
TypeScript
import { defineConfig } from 'eslint/config';
|
|
import { getBaseConfig, getTSVueConfig, getNodeFiles, tsFiles } from './src/lint';
|
|
import pkg from './package.json' with { type: 'json' };
|
|
|
|
export default defineConfig([
|
|
...getBaseConfig(pkg.name),
|
|
...getTSVueConfig(pkg.name, false, import.meta.dirname),
|
|
...getNodeFiles(pkg.name, tsFiles)
|
|
]);
|