7ute / symbols-list

An alternate symbol list sidebar for Atom.io text editor
GNU General Public License v3.0
32 stars 24 forks source link

Support Multiline Method Signatures in Javascript #69

Closed konradjurk closed 5 years ago

konradjurk commented 5 years ago

Some tools like ESLint with the max-len rule enabled can produce method signatures like this:

bildschirmfoto 2019-01-30 um 13 21 27

I've adapted the regular expressions to match this and tried to reduce false positives like these:

test();

if () {

}
each(properties, property => {

});