mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 05:02:57 +00:00
18 lines
324 B
JavaScript
18 lines
324 B
JavaScript
import uni from '@uni-helper/eslint-config'
|
|
|
|
export default uni(
|
|
{
|
|
unocss: true,
|
|
rules: {
|
|
'no-console': 'off',
|
|
'eslint-comments/no-unlimited-disable': 'off',
|
|
},
|
|
ignores: [
|
|
'src/uni_modules/**/*',
|
|
'docs/.vitepress/dist',
|
|
'docs/.vitepress/cache',
|
|
'**/*.md',
|
|
],
|
|
},
|
|
)
|