Nick Petruzzelli

Results 30 comments of Nick Petruzzelli

Are you opening a folder instead of a project? I don't know if you are running into the same thing I did, but I'll share just in case. For example:...

I'll add that for whatever reason, I don't have this problem with `SublimeLinter-eslint`. For some reason, it just works. How it locates executables is probably very different from how ESLint-Formatter...

```javascript var watcher = globWatcher('local_packages/**/*'); watcher.on('raw', function(event, path, details){ console.log('Raw event info:', event, path, details); }); // => Raw event info: rename New folder { watchedPath: 'local_packages' } ```

The noop prevents the error from throwing, but the error still happens (confirmed by logging it). the `unlinkDir` event still does not happen.

No error event, but also no unlinkDir event. Raw output hasn't changed.

I don't know if I have the time/skill to solve it, but I will at least give it a try starting with the code you highlighted. What I am working...

https://github.com/paulmillr/chokidar/blob/f17186dff7b27c67b17a644c333cc239b42827ba/lib/nodefs-handler.js#L94 ```javascript // => fd === 3; // => err === null ``` Additional References: - [util.js 870:11](https://github.com/nodejs/node/blob/v4.3.1/lib/util.js#L870) - [fs.js 1217:21](https://github.com/nodejs/node/blob/v4.3.1/lib/fs.js#L1217) I've run into something that is even more confusing....

I've been able to do a little more digging. Here is what I have found. First my environment has changed a little bit. I've upgraded to `Node v6.10.2` and `NPM...

Also, I think my hacky work around bypassed throttling code somewhere.