mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-17 17:26:38 +08:00
16 lines
264 B
JavaScript
16 lines
264 B
JavaScript
import { defineConfig } from '@soybeanjs/eslint-config';
|
|
|
|
export default defineConfig(
|
|
{ vue: true },
|
|
{
|
|
rules: {
|
|
'vue/multi-word-component-names': [
|
|
'warn',
|
|
{
|
|
ignores: ['index', 'App', '[id]']
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|