mirror of
				https://github.com/soybeanjs/soybean-admin.git
				synced 2025-11-04 07:43:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			531 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			531 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { defineConfig } from '@soybeanjs/eslint-config';
 | 
						|
 | 
						|
export default defineConfig(
 | 
						|
  { vue: true, unocss: true },
 | 
						|
  {
 | 
						|
    rules: {
 | 
						|
      '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'
 | 
						|
    }
 | 
						|
  }
 | 
						|
);
 |