mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			457 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			457 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
    bracketSpacing: false,
 | 
						|
    trailingComma: "all",
 | 
						|
    overrides: [
 | 
						|
        {
 | 
						|
            files: ["frontend_tests/casper_tests/*.js", "frontend_tests/casper_lib/*.js"],
 | 
						|
            options: {
 | 
						|
                trailingComma: "es5",
 | 
						|
            },
 | 
						|
        },
 | 
						|
        {
 | 
						|
            files: ["tsconfig.json"],
 | 
						|
            options: {
 | 
						|
                parser: "json5",
 | 
						|
                quoteProps: "preserve",
 | 
						|
            },
 | 
						|
        },
 | 
						|
    ],
 | 
						|
};
 |