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]']
|
|
}
|
|
]
|
|
}
|
|
}
|
|
);
|