geno/wp-content/plugins/woo-cart-abandonment-recovery/.prettierrc.js
2024-02-01 11:54:18 +00:00

14 lines
300 B
JavaScript

// Import the default config file and expose it in the project root.
// Useful for editor integrations.
const config = require( '@wordpress/prettier-config' );
config.overrides = [
{
files: [ '*.css' ],
options: {
printWidth: 500,
singleQuote: false,
},
},
];
module.exports = config;