Files
moeka-project/eslint.config.ts
T
LemonNeko bddd999d5d feat(tamagotchi): basic MCP support (#144)
* refactor: tauri plugin
* fix: DO NOT auto format generated files
* fix: not format, it's normal generation
* feat: command wrapper
* feat: settings page to configure server
* fix: transparent background
2025-04-28 15:08:28 +08:00

31 lines
607 B
TypeScript

// @ts-check
import antfu from '@antfu/eslint-config'
export default antfu(
{
unocss: true,
formatters: true,
ignores: [
'**/assets/js/**',
'**/assets/live2d/models/**',
'apps/stage-tamagotchi/out/**',
'apps/stage-tamagotchi/src-tauri/**',
'**/drizzle/**',
'**/.astro/**',
],
rules: {
'import/order': [
'error',
{
'groups': [
['type'],
['builtin', 'external'],
['parent', 'sibling', 'index'],
],
'newlines-between': 'always',
},
],
},
},
)