mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2026-03-25 07:47:22 +08:00
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
import { defineConfig } from '@soybeanjs/eslint-config-vue';
|
|
|
|
export default defineConfig({
|
|
'vue/component-name-in-template-casing': [
|
|
'warn',
|
|
'PascalCase',
|
|
{
|
|
registeredComponentsOnly: false,
|
|
ignores: ['/^icon-/']
|
|
}
|
|
]
|
|
});
|