Alexander Kachkaev

Results 463 comments of Alexander Kachkaev

@voxpelli I can observe this issue in the latest Config Inspector (0.5.5) when creating a new Next.js project (15.0.1). Versions below are pinned for reproducibility: ```sh cd /tmp npx [email protected]...

@rrmesquita try using `@next/eslint-plugin-next` instead of `eslint-config-next`. The config package is a wrapper around the plugin. ```ts // ... import eslintPluginNext from "@next/eslint-plugin-next"; // ... export default [ // ......

Related issue: https://github.com/francoismassart/eslint-plugin-tailwindcss/issues/315

Possibly related issue: https://github.com/eslint/config-inspector/issues/70 (see reproduction steps in the [third comment](https://github.com/eslint/config-inspector/issues/70#issuecomment-2441419320)).

`Data.TaggedError` comes from https://github.com/Effect-TS/effect (11K+ stars & [growing rapidly](https://www.star-history.com/#Effect-TS/effect&Date)). Trying this library in a side project and am facing an incompatibility with unicorn. Relevant docs: https://effect.website/docs/error-management/expected-errors/ Since we are dealing...

https://github.com/sindresorhus/eslint-plugin-unicorn/pull/2740

A quick note on https://github.com/francoismassart/eslint-plugin-tailwindcss/pull/381#issuecomment-2612439822: > classnames-order - not important as it is covered by the official tailwind prettier plugin Although [prettier-plugin-tailwindcss](https://www.npmjs.com/package/prettier-plugin-tailwindcss) has the 'official' status and is mainted by...

My workaround for now: ```ts export const multiUnion = ( thingsToUnion: Array< | turf.Feature | turf.Polygon | turf.MultiPolygon >, ): turf.Feature => { const [firstThing, ...remainingThings] = thingsToUnion; if (!firstThing)...

I guess this issue has similar root cause as https://github.com/dahlia/logtape/issues/19. If we `import { **everything** } from '@logtape/logtape';`, each export has to be compatible with all environments (Node, Deno, Browser,...

I see, interesting! I don’t think I’ll have capacity to submit a PR in the next couple of weeks, so it’s up for grabs. In the meantime, I’ve added a...