 21b8ec29aa
			
		
	
	
	
	
	21b8ec29aaAdds [eslint-plugin-vue-scoped-css](https://github.com/future-architect/eslint-plugin-vue-scoped-css) and fixes discovered issues which are: - 1 unused selector - 3 selectors with `.full.height` parent in a `<style scoped>` block so the rule could not find the parent. Move these into the unscoped block instead. They worked before and after.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| plugins:
 | |
|   - eslint-plugin-vue
 | |
|   - eslint-plugin-vue-scoped-css
 | |
| 
 | |
| extends:
 | |
|   - ../../../.eslintrc.yaml
 | |
|   - plugin:vue/vue3-recommended
 | |
|   - plugin:vue-scoped-css/vue3-recommended
 | |
| 
 | |
| env:
 | |
|   browser: true
 | |
| 
 | |
| rules:
 | |
|   vue/attributes-order: [0]
 | |
|   vue/html-closing-bracket-spacing: [2, {startTag: never, endTag: never, selfClosingTag: never}]
 | |
|   vue/max-attributes-per-line: [0]
 | |
|   vue-scoped-css/enforce-style-type: [0]
 |