Tmeister / wppb-gen-site

WordPress Plugin Boilerplate Generator
http://wppb.me
191 stars 80 forks source link

Advanced option for coding styles [enhancement] #11

Closed rvarbanov closed 8 years ago

rvarbanov commented 9 years ago

Hi,

I want to suggest an advanced option for the generator. One that will allow developers to chose coding styles. For example the pluging currently outputs the code with spaces like this:

if ( ! defined( 'WPINC' ) ) {
    die;
}

I would love to see an option to convert that code to:

if(!defined('WPINC')) {
    die;
}

P.S. I love your WP Plugin generator! I even bookmarked it!

JKetelaar commented 8 years ago

If you follow the WordPress coding standards, this shouldn't happen

rvarbanov commented 8 years ago

Thank you for the link.