You've already forked matrix-react-sdk
							
							
				mirror of
				https://github.com/matrix-org/matrix-react-sdk.git
				synced 2025-11-03 00:33:22 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			878 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			878 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
    "extends": "stylelint-config-standard",
 | 
						|
    "plugins": [
 | 
						|
        "stylelint-scss",
 | 
						|
    ],
 | 
						|
    "rules": {
 | 
						|
        "color-hex-case": null,
 | 
						|
        "indentation": 4,
 | 
						|
        "comment-empty-line-before": null,
 | 
						|
        "declaration-empty-line-before": null,
 | 
						|
        "length-zero-no-unit": null,
 | 
						|
        "rule-empty-line-before": null,
 | 
						|
        "color-hex-length": null,
 | 
						|
        "max-empty-lines": 1,
 | 
						|
        "no-eol-whitespace": true,
 | 
						|
        "number-no-trailing-zeros": null,
 | 
						|
        "number-leading-zero": null,
 | 
						|
        "selector-list-comma-newline-after": null,
 | 
						|
        "at-rule-no-unknown": null,
 | 
						|
        "no-descending-specificity": null,
 | 
						|
        "no-empty-first-line": true,
 | 
						|
        "scss/at-rule-no-unknown": [true, {
 | 
						|
            // https://github.com/vector-im/element-web/issues/10544
 | 
						|
            "ignoreAtRules": ["define-mixin"],
 | 
						|
        }],
 | 
						|
    }
 | 
						|
}
 |