mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-11-04 21:02:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			322 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			322 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  extends: [
 | 
						|
    'stylelint-config-standard',
 | 
						|
    'stylelint-config-rational-order',
 | 
						|
    'stylelint-config-prettier',
 | 
						|
  ],
 | 
						|
  rules: {
 | 
						|
    'no-descending-specificity': null,
 | 
						|
    'selector-pseudo-element-no-unknown': [
 | 
						|
      true,
 | 
						|
      {
 | 
						|
        ignorePseudoElements: ['v-deep'],
 | 
						|
      },
 | 
						|
    ],
 | 
						|
  },
 | 
						|
};
 |