Matthew Dapena-Tretter

Results 33 issues of Matthew Dapena-Tretter

create-error has a pretty naive cloning implementation that seems to prevent you from storing any real objects on the error. For example: ``` javascript var MyCustomError = createError('MyCustomError'); new MyCustomError('Bad!',...

``` class A(AppSettings): pass class P(PrefixedSettings): pass class MySettings(A, P): pass ``` causes the following error: ``` TypeError: Error when calling the metaclass bases metaclass conflict: the metaclass of a...

bug

If you're using a linter to limit line length, you can easily end up breaking up a single TODO into multiple lines. It would be awesome if that would be...

enhancement

The Post model contains a `unique_together` constraint with includes the (BLOB) `guid` field, making it MySQL incompatible. Running syncdb results in the following error: ``` _mysql_exceptions.OperationalError: (1170, "BLOB/TEXT column 'text'...

I had something that looked like this: ``` javascript gulp.src(['dir1', 'dir2']) .pipe(rsync({...})); ``` This was causing an `E2BIG` error—I think because the number of matched files made the command too...

Thanks for the plugin! It works great, but I have a small question about a part of the API that doesn't seem to gel with how gulp wants you to...

Safari 9 doesn't support `new Uint8Array(iterable)` or `Uint8Array.from(iterable)`, but neither is flagged by the plugin.

Atom notifications can't be dismissed using escape when vim-mode-plus is installed. To repro: 1. Trigger a notification (`atom.notifications.addError('hi')`) 2. With the editor focused, hit esc. (Nothing happens.) 3. Trigger "Core:...

documentation
compatiblity-to-Atom

According to the docs: > By default, WorkerPlugin doesn't run any of your configured Webpack plugins when bundling worker code However, this doesn't seem to be true. Consider the following...

question
upstream

[Currently](https://github.com/andreypopp/react-router-component/blob/b08fc07d6cb69200be595f8ec469619c441e29c3/lib/environment/Environment.js#L46), using `replaceState` is always opt-in (i.e. it defaults to `false`): ``` javascript if (!navigation.isPopState) { if (navigation.replace) { this.replaceState(path, navigation); } else { this.pushState(path, navigation); } } ``` I...