Naser Aleisa
Naser Aleisa
A migration guide has been added to eslint's docs: https://eslint.org/docs/latest/extend/plugin-migration-flat-config
I created an [fzf-raindrop](https://github.com/thenbe/fzf-raindrop) picker that might be of interest. It only makes a single network request to the Raindrop API - to get a single CSV containing every item....
> Discrete nvim-tree windows, with their own state that does not affect others. This could enable us to use NvimTree with [edgy.nvim](https://github.com/folke/edgy.nvim#-edgynvim) to achieve something like this: 
I wanted to add component testing to the svelte-headlessui library, and tried to do so using Playwright's component testing. I'm aware that playwright-ct (`@playwright/experimental-ct-svelte`) was/is still experimental, but I was...
@dgozman Would you consider implementing this in a way that would support the following usecase? ```ts test('MyButton has no side effects', async ({ page }) => { await page.goto('/'); const...
Possibly related: https://github.com/microsoft/playwright/issues/18041 My current workaround is to [manually](https://github.com/microsoft/playwright/issues/18041#issuecomment-1282807484) detect if a process has been started by playwright, then use `tree-kill` to kill it in [`GlobalTeardown`](https://github.com/microsoft/playwright/issues/18041#issuecomment-1279540730).
I can reproduce this issue on nixos. ``` $ tailscale ssh user@host 2024/05/15 16:08:39 tailscaled does not take non-flag arguments: ["nc" "host.tail123ab.ts.net." "22"] ```
@gornostay25 If you right click the bottom right corner (next to where it says `prettier`), does it show you more info about your typescript setup?
For folks using sveltekit and/or vite, one workaround is to use [vite-plugin-iso-import](https://github.com/bluwy/vite-plugin-iso-import). ### Before ```typescript // src/routes/+layout.ts import { appDataDir } from '@tauri-apps/api/path' import { appWindow } from '@tauri-apps/api/window' //...
I'll mention [task](https://github.com/go-task/task) since I haven't seen it mentioned here and I suspect those following this thread may find it interesting or useful as it is a modern, language-agnostic build...