Jayden Seric

Results 226 comments of Jayden Seric

> So, I'd think we could use `\u002f` for `/` (and that is definitely JavaScript friendly, and usable for typescript mode if it works in VSCode or such). Can you...

A solution is required for any "mode" of JSDoc; I don't currently use the TypeScript mode. The `jsdoc` mode should not be specifically for https://github.com/jsdoc/jsdoc , but rather for that...

For escapable escapes using backlashes, [this regex](https://regex101.com/r/A1TWvI/1/) is all that's needed to unescape the JSDoc content: ```js const unescaped = jsdocContent.replace(/(?

Is there a workaround we can use before this bug is fixed?

This issue should be labeled a bug, not an enhancement. The `node/file-extension-in-import` rule is straight-up broken, reporting false errors that are impossible to fix without using `// eslint-disable-next-line node/file-extension-in-import`. The...

Can this please be reviewed/merged? Unnecessary stuff is being published and making its way into people's `node_modules`: https://unpkg.com/[email protected]

@Erik1000 regarding https://github.com/jaydenseric/graphql-multipart-request-spec/issues/55#issuecomment-911800652 > the [GraphQL multipart request] spec currently defines that the graphql query itself as well as the mapping for the files are json encoded. Since the GraphQL...

@Nickyle this issue is not the right topic for a question like that. And to answer to your question, I can't really help you as I don't have experience with...

@declanelcocks Keep in mind that the HTTP link from `apollo-upload-client` modifies the operation for the request, see https://github.com/jaydenseric/apollo-upload-client/issues/81. I don't know if this is what is happening in your situation,...

All good questions. This used to be a problem in `husky` too: https://github.com/typicode/husky/issues/134. These days `husky` supports mono repos: - It updates existing hooks: https://github.com/typicode/husky/blob/v1.3.1/src/installer/__tests__/index.ts#L92 - It supports `package.json` in...