mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			434 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			434 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
    bracketSpacing: false,
 | 
						|
    tabWidth: 4,
 | 
						|
    trailingComma: "all",
 | 
						|
    overrides: [
 | 
						|
        {
 | 
						|
            files: ["frontend_tests/casper_tests/*.js", "frontend_tests/casper_lib/*.js"],
 | 
						|
            options: {
 | 
						|
                trailingComma: "es5",
 | 
						|
            },
 | 
						|
        },
 | 
						|
        {
 | 
						|
            files: ["**.yml", "**.yaml"],
 | 
						|
            options: {
 | 
						|
                tabWidth: 2,
 | 
						|
            },
 | 
						|
        },
 | 
						|
    ],
 | 
						|
};
 |