Initial commit

This commit is contained in:
AI
2026-05-03 07:26:12 +00:00
commit 776d374b59
57 changed files with 15968 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
export default withNuxt([
{
rules: {
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: 'import', next: '*' },
{ blankLine: 'any', prev: 'import', next: 'import' }
],
'vue/block-order': [
'error',
{
order: ['template', 'script', 'style']
}
]
}
}
])