Vladyslav Dukhin

Results 17 comments of Vladyslav Dukhin

Broken URLs still exist in the Rules list. For example: https://eslint.org/docs/rules/no-useless-backreference. This is a bit confusing 😕

I've also been thinking about changing the GitHub Actions CI example in this repo. Fortunately, before contributing, I checked existing PRs. It's awesome to find other contributors working on the...

> > This commitlint execution step has some exciting benefits: > > Very interesting! Do you know if it works also on repos with just 1 commit? Sure, I've tested...

> > Sure, I've tested this step on one of my projects, and it works in all scenarios, including a single commit. > > Are you 100% sure? I haven't...

Sorry, @knocte, I misunderstood you. I tested this workflow with the initial single commit, and you are right. It does not work because GitHub Actions uses zero commit hash as...

Also, my proposed workflow step does not work with force push: GitHub Actions provide the hash of the previous commit in `before` that does not exist anymore.

The CI is failing as Node.js 12 does not support the optional chaining operator. Should I update my code, or could we just drop Node.js 12 as it has got...

Well, a quick workaround to the problem would be to pass `reply.locals` in handler as data: ```js async handler(request, reply) { console.log('Locals: ', reply.locals); const html = await this.render('page', {...

As I was reading the source code, I found the difference lies behind the decoration in Fastify. When a reply is decorated with "view" and "locals", they are in the...