mirror of
				https://github.com/brain-tec/account_ebics.git
				synced 2025-11-04 15:10:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			365 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			365 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/** @type {import('prettier').Config} */
 | 
						|
 | 
						|
const config = {
 | 
						|
  // https://github.com/prettier/prettier/issues/15388#issuecomment-1717746872
 | 
						|
  plugins: [require.resolve("@prettier/plugin-xml")],
 | 
						|
  bracketSpacing: false,
 | 
						|
  printWidth: 88,
 | 
						|
  proseWrap: "always",
 | 
						|
  semi: true,
 | 
						|
  trailingComma: "es5",
 | 
						|
  xmlWhitespaceSensitivity: "preserve",
 | 
						|
};
 | 
						|
 | 
						|
module.exports = config;
 |