Automattic / phpcs-neutron-standard

A set of phpcs sniffs for PHP >7 development
MIT License
94 stars 7 forks source link

Add sniff to require a newline between one function definition and the next #52

Closed sirbrillig closed 6 years ago

sirbrillig commented 6 years ago

Turn this this:

function foobar() {
}
function barfoo() {
}

into this:

function foobar() {
}

function barfoo() {
}