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
We currently have a mix of different ways the lint script is written in the package.json file of the packages that use the eslint plugin:
eslint -c ../../.eslintrc.old.json src test samples --ext .ts
eslint package.json api-extractor.json src test --ext .ts
and a few others...
The only difference we should have is whether the output is routed to an html file and ignore errors using the || exit 0 or not.
The former would be for packages for which we have not fixed linting errors yet.
The latter would be for packages for which all current linting errors are fixed
Another issue with these scripts are that some of them have the wrong package name in the linting report, potentially due to copy/paste errors
The text was updated successfully, but these errors were encountered:
We currently have a mix of different ways the
lint
script is written in the package.json file of the packages that use the eslint plugin:and a few others...
The only difference we should have is whether the output is routed to an html file and ignore errors using the
|| exit 0
or not.The former would be for packages for which we have not fixed linting errors yet.
The latter would be for packages for which all current linting errors are fixed
Another issue with these scripts are that some of them have the wrong package name in the linting report, potentially due to copy/paste errors
The text was updated successfully, but these errors were encountered: