create-iking-admin
Version:
金合技术中台脚手架
39 lines (37 loc) • 811 B
JavaScript
/*
* @Author : wfl
* @LastEditors : wfl
* @description :
* @updateInfo :
* @Date : 2024-02-29 14:41:18
* @LastEditTime : 2024-03-06 11:24:07
*/
import antfu from '@antfu/eslint-config'
export default antfu(
{
unocss: true,
ignores: [
'public',
'dist*',
],
},
{
rules: {
'eslint-comments/no-unlimited-disable': 'off',
'antfu/top-level-function': null,
'curly': ['error', 'all'],
'antfu/consistent-list-newline': 'off',
'no-console': ['error', { allow: ['info', 'error', 'warn'] }],
},
},
{
files: [
'main-app/**/*.vue',
],
rules: {
'vue/block-order': ['error', {
order: ['route', 'i18n', 'script', 'template', 'style'],
}],
},
},
)