Results 108 comments of Naser Aleisa

In objects, this bug only happens on the *first* commented out key. Here, it will complain only about the `c` key. ## Repro ```svelte /* eslint svelte/indent: "error" */ const...

I've been using a custom rule that supports the new [unified CLI](https://zero-to-nix.com/concepts/nix#unified-cli) for a while, and was planning on opening a PR once this one has been merged (I hesitate...

I'm not sure if `thefuck` can handle piping. If I make a typo `git statis` it will correct me to `git status`. But if I do `echo hello | git...

If I'm only looking to execute a program (and don't need to be dropped into a shell) then I prefer `nix run` over `nix shell` as the [documentation](https://nix.dev/manual/nix/2.19/command-ref/new-cli/nix3-run) suggests `nix...

> another common nix thing we might be able to address from `thefuck` would be errors about packages being unfree > > edit: [KiaraGrouwstra@16d838b](https://github.com/KiaraGrouwstra/thefuck/commit/16d838bf6f63117b161a2f1e6572e06108b007eb) This would be useful. Does it...

I just have it aliased to `f` for extra convenience. I opted not to package it for nix separately since `fuck` already exposes a method for easily adding custom rules....

I've had a similar experience where no completions are shown. The lack of logs made it difficult to debug. I'm on neovim nightly. ``` nvim --version NVIM v0.10.0-dev-4e59 ```

I'm on nightly. ``` NVIM v0.10.0-dev-d2983dc Build type: Release LuaJIT 2.1.1693350652 ```

An example of a similar migration on another eslint plugin: https://github.com/eslint-community/eslint-plugin-security/pull/145/files

[`eslint-plugin-unocss`](https://github.com/devunt/eslint-plugin-unocss) has a similar rule ([`no-excessive-whitespaces`](https://github.com/devunt/eslint-plugin-unocss/blob/main/lib/rules/no-excessive-whitespaces.ts)) that can be used for inspiration.