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 -->
</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)
.