grunt-phplint
grunt-phplint copied to clipboard
On install, node 7.0.0: ```text npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN deprecated [email protected]: Please update to minimatch...
It would be great if a warning could be generated when an error occurs instead of a fatal error that causes Grunt to exit. Very handy when you're running the...
After upgrading Node to v7 I have something like this: `(node:8982) DeprecationWarning: os.tmpDir() is deprecated. Use os.tmpdir() instead.` I think this is the [cause](https://github.com/jgable/grunt-phplint/blob/434603154a401f773b41c7a8940d5da676618e16/tasks/core/PhpLintTask.js#L22).
I think it would be easier to maintain the code base with TypeScript. It solves more problem than it causes :-)
The default value of `options.spawnLimit` is hard-coded to 10. It should be replaced with this: `os.cpus().length`
For testing purposes a I tried to lint [the /core directory of Drupal 8](http://cgit.drupalcode.org/drupal/tree/core). It contains ~6200 PHP files. It takes ~17sec to run this command: `time find ./ -type...
The multiple PHP version is a very good feature, but the problem is that each `options.phpCmd` uses the same cache result. If a php file first was linted with PHP...
Hello! This is quite useful! Is it possible to dump the errors to a .txt file? Cheers, Dave
Hello, I've never used PHPlint before and I'm trying to get started with grunt-phplint. I have it checking my files correctly and the command line outputs ">> 43 files php...