Misha Kaletsky
Misha Kaletsky
Right now, using these helpers usually results in un-typed queries. If the type is detectable at codegen time it may sometimes be possible to use better placeholders than `$1` etc.
Hi there - I'm trying to use this project in a repo that uses pnpm rather than yarn/npm. pnpm installs packages [differently](https://pnpm.io/symlinked-node-modules-structure) so the assumption that `../..` will find the...
Hi there! 👋 Big fan of migra - I'm working on a typescript/nodejs port (which as an aside, would be great to talk about if you're interested). I'm running the...
**Describe the bug** I have a sheet in a dark-mode app, and the text color is white. When I copy a range of cells and paste them into https://sheet.new, they're...
Was looking at enquirer's dependencies and noticed the readme said there's only one, but there are two listed on https://www.npmjs.com/package/enquirer?activeTab=dependencies
I knew CI => frozen lockfile, but wasn't sure of the right way to negate it. I guessed `--fix-lockfile`, but that caused too many changes. I took the wording from...
We have components called `FAQPage.js`, `DIYWidget.js`, etc. We're getting `unicorn/filename-case` errors on these, but I don't think we should. I couldn't find an authoritative definition of what to do with...
Playwright's [Locator](https://playwright.dev/docs/api/class-locator#locator-get-attribute) class has a `getAttribute` method. Using this with a `data-foo` attribute gets autofixed to `.dataset.foo` which is wrong. rule: `unicorn/prefer-dom-node-dataset` ```ts await page.locator('text=Hello').getAttribute('data-foo') ``` Suggestion: find some smart...
The TypeScript team have created a similar proposal: https://github.com/giltayar/proposal-types-as-comments
### Description Cron expressions are used in lots of places, but they're hard to read and misunderstanding them can be quite problematic. This lint rule could detect cron expressions, and...