sindresorhus/refined-github

Meta: `npm run fix` not working (`ERROR: Task not found: "'lint:*"`) #4704

darkred posted onGitHub

Related: #4386

Using Node 16.7.0 x64 on win10. Tested with latest PowerShell 7.1.4, cmd, Cygwin, MinGW64 (Git Bash of latest Git 2.33.0 ).

Running npm run fix results in:

>npm run fix

> fix
> run-p 'lint:* -- --fix'

ERROR: Task not found: "'lint:*"

<details> <summary>screenshot:</summary>

<!-- leave a blank line above -->

2021-08-23_173108

</details>

The related lines in package.json are: https://github.com/sindresorhus/refined-github/blob/c68ed1de16d10967c5e9a42b60d70427e1a2e7c0/package.json#L9-L12

If I remove the singlequotes from line 9, i.e.:

"fix": "run-p lint:* -- --fix",

then the procedure completes, but the fixable issues are not fixed:

<details> <summary>output:</summary>

>npm run fix

> fix
> run-p lint:* -- --fix


> lint:css
> stylelint "source/**/*.css"


> lint:js
> xo


(list of errors)


  x warnings
  y errors
ERROR: "lint:js" exited with 1.

</details>

I verified that they are not fixed by using latest XO extension in VScode the command XO: Fix all auto-fixable problems: that command worked ok.

Maybe something has broken with latest Node version?

How to reproduce:

In any existing .tsx file, add for example this line:

const a = "";

which triggers this fixable XO error: Strings must use singlequote. XO(@typescript-eslint/quotes).


That’s because single quotes don’t work on Windows as far as I know. I thought they worked on cygwin, maybe now that you know why you can Google a solution.

For now you can run this specifically: npx xo --fix and the equivalent stylelint command

posted by fregante over 3 years ago

Or you can replace the single quotes with double quotes in the package json and send a PR if that works.

posted by fregante over 3 years ago

Fund this Issue

$0.00
Funded

Pull requests