C.Ezra.M

Results 19 comments of C.Ezra.M

The title does mention `npm exec`, but this is in `npx` as well. The reason I mentioned the former one is because the npm/npx repo is archived, since npx is...

> This doesn't seem like it's ESLint-specific. Are you able to run other Node.js-powered command line utilities like Prettier? I will check this tomorrow after school.

As it turns out, this is not explicitly a problem with ESLint, but with npm exec.

I'm sorry for this unrelated post, but I'm so confused about this change, and still some other bots (e.g. carl-bot) don't seem to strictly follow this new guideline. Can someone...

I will try to check for other cases of a number multiplying by itself and replace them with exponents.

NOTE: The commit above modified 10 files, but the name says 3 because I forgot to change it.

This might be a minor application of DRY (Don't Repeat Yourself), which doesn't apply just to iteration, but to general repetition. That's why I put exponentiation here.

Please note that this will only work if the dialog is opened via `showModal()` or `show()`, manually applying the `open` attribute won't initiate the `::backdrop`.

It won't, as just using the `open` attribute won't initialize the `::backdrop` (intended!).

Another proof that cursing dunder methods fails. I was trying to make numeric types callable, to implement implicit multiplication as it's known in some programming languages such as Julia. ```py...