mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 05:23:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			423 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			423 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
module.exports = {
 | 
						|
    bracketSpacing: false,
 | 
						|
    trailingComma: "all",
 | 
						|
    overrides: [
 | 
						|
        {
 | 
						|
            files: ["tsconfig.json"],
 | 
						|
            options: {
 | 
						|
                parser: "json5",
 | 
						|
                quoteProps: "preserve",
 | 
						|
            },
 | 
						|
        },
 | 
						|
        {
 | 
						|
            files: ["*.md"],
 | 
						|
            options: {
 | 
						|
                embeddedLanguageFormatting: "off",
 | 
						|
            },
 | 
						|
        },
 | 
						|
    ],
 | 
						|
};
 |