| 1234567891011121314151617181920212223242526 | 
							- import { defineConfig } from '@soybeanjs/eslint-config';
 
- export default defineConfig(
 
-   { vue: true, unocss: true },
 
-   {
 
-     rules: {
 
-       'no-console': 'off',
 
-       eqeqeq: 'off',
 
-       'vue/multi-word-component-names': [
 
-         'warn',
 
-         {
 
-           ignores: ['index', 'App', 'Register', '[id]', '[url]']
 
-         }
 
-       ],
 
-       'vue/component-name-in-template-casing': [
 
-         'warn',
 
-         'PascalCase',
 
-         {
 
-           registeredComponentsOnly: false,
 
-           ignores: ['/^icon-/']
 
-         }
 
-       ],
 
-       'unocss/order-attributify': 'off'
 
-     }
 
-   }
 
- );
 
 
  |