Steven Scaffidi
Steven Scaffidi
``` javascript const uploadPromise = (params) => ( new Promise((resolve, reject) => { S3.upload(params, (error, uploadedFile) => { if (error) { reject(error); } resolve(uploadedFile); }); }) ); export const uploadFile...
The above is just JavaScript (ES6 arrow functions are used). The above should work - no dependencies on coffeescript. @msj121
Any updates on this issue? Or any recommended approaches?
> > > > Yeah, this sucks. I don't want to disable the duplicate string error for my tests, because there are places that should definitely have constants. > >...
Our .eslintrc file sits on a shared network drive. Eslint for vscode has a way to specify the configFile through eslint.options. It would be great if this plugin could support...
Same issue. Any updates. Screenshots below: Cypress Coverage - correct:  Jest Coverage - correct:  Combined Coverage...
I have the same problem. Any updates on this?
Any updates on this? Or can you allow @zploskey to have push rights to this repo?
``` import { Blaze } from 'meteor/blaze' import { Template } from 'meteor/templating' import AccountsUI from 'meteor/ian:accounts-ui-bootstrap-3' import React from 'react' import ReactDOM from 'react-dom' export default class AccountsUIWrapper extends...
Hey @jnhooper thanks for the feedback. This is mostly a reminder for myself to do this when I get some time. I've been working on some other projects so just...