You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
439 B
JavaScript
24 lines
439 B
JavaScript
import { defineConfig } from '@soybeanjs/eslint-config';
|
|
|
|
export default defineConfig(
|
|
{ vue: true },
|
|
{
|
|
rules: {
|
|
'vue/multi-word-component-names': [
|
|
'warn',
|
|
{
|
|
ignores: ['index', 'App', '[id]']
|
|
}
|
|
],
|
|
'vue/component-name-in-template-casing': [
|
|
'warn',
|
|
'PascalCase',
|
|
{
|
|
ignores: ['/^icon-/']
|
|
}
|
|
],
|
|
'no-console': 'off'
|
|
}
|
|
}
|
|
);
|