You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every repository has now a report tool to generate a report for e.g. Sonarcloud "lint:report": "ponstandard src | standard-reporter --json > report.json",
This report cannot be used in sonarcloud, so we have to find a solution.
Another way is: "lint:report": "eslint src/* --format json --output-file ./report.json",
There are also a lot of repository's that need an update for this fix.
And now all repository's has their own report tool.
It would be better to move the report to this package.
How to update a repository?
We can e.g. create a bash script, that changes the package.json (change the report script (lint:report) upgrade the ponstandard package) and maybe do e.g. a commit.
The text was updated successfully, but these errors were encountered:
Every repository has now a report tool to generate a report for e.g. Sonarcloud
"lint:report": "ponstandard src | standard-reporter --json > report.json",
This report cannot be used in sonarcloud, so we have to find a solution.
Another way is:
"lint:report": "eslint src/* --format json --output-file ./report.json",
There are also a lot of repository's that need an update for this fix.
And now all repository's has their own report tool.
It would be better to move the report to this package.
How to update a repository?
We can e.g. create a bash script, that changes the package.json (change the report script (
lint:report
) upgrade the ponstandard package) and maybe do e.g. a commit.The text was updated successfully, but these errors were encountered: