notslang / editorconfig-tools

Tools for verifying/fixing code style based on an EditorConfig file
https://npmjs.com/package/editorconfig-tools
GNU General Public License v3.0
54 stars 6 forks source link

glob support #20

Closed schnittstabil closed 9 years ago

schnittstabil commented 9 years ago

In contrast to Unix shells the Windows cmd is unable to handle glob patterns, this is awkward, especially within plattform independent npm scripts:

  "scripts": {
    "test": "editorconfig-tools check package.json src/a.js src/util/b.js…"
  },
  …
}

If you are interested in this PR, but want more information about the node-glob project I've used, please visit the node-glob website.

(In addition, glob support would also alleviate #2)

schnittstabil commented 9 years ago

Sorry, wrong branch.

schnittstabil commented 9 years ago

I'm sorry if I bothered you. Personally, I do not need this PR anymore, I'm using globstar instead. Anyway, thank you for that project.