geno/wp-content/plugins/woo-cart-abandonment-recovery/.prettierrc.js

15 lines
300 B
JavaScript
Raw Normal View History

2024-02-01 17:24:18 +05:30
// 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;