Steven Scaffidi

Results 20 comments of 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: ![Screenshot 2023-04-18 at 1 35 30 PM](https://user-images.githubusercontent.com/1554424/232872903-66d52e80-0d3f-4086-8c07-1ac682dc2625.png) Jest Coverage - correct: ![Screenshot 2023-04-18 at 1 35 24 PM](https://user-images.githubusercontent.com/1554424/232872889-db5c6946-2b02-401f-b92d-81f47a9c29e8.png) 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...