-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Eliminate eslint-plugin-standard #1316
Comments
Couldn’t we replace it with I would also like to say that this looks like an old JavaScript coding pattern that can be replaced by promises and |
function loadData (err, data) {
doSomething()
}
cb('an error string') |
I opened an issue asking if ESLint wants to adopt |
I was able to PR the So, we can close this issue in |
Posted a request to deprecate |
@voxpelli I agree. Just released |
@feross This package is still listed as a |
@sQVe That peerDependency should be locked to 4.x then, or better, replaced there as well |
[因为standard and eslint-config-standard16+ 不再需要](standard/standard#1316)
@voxpelli thank you very much for the detailed explanation! 👍 We were still using in our I just replaced these old rules with the ones in the eslint-config-standard rules file and is working good now! |
Also removing deprecated eslint-plugin-standard as per: standard/standard#1316
Also removing deprecated eslint-plugin-standard as per: standard/standard#1316
As per deprecation message during NPM install: > standard 16.0.0 and eslint-config-standard 16.0.0 no longer require the eslint-plugin-standard package. > You can remove it from your dependencies with 'npm rm eslint-plugin-standard'. > More info here: standard/standard#1316
standard 16.0.0 and eslint-config-standard 16.0.0 no longer require the eslint-plugin-standard package. [1] standard/standard#1316
standard 16.0.0 and eslint-config-standard 16.0.0 no longer require the eslint-plugin-standard package. [1] standard/standard#1316
standard 16.0.0 and eslint-config-standard 16.0.0 no longer require the eslint-plugin-standard package. [1] standard/standard#1316
[因为standard and eslint-config-standard16+ 不再需要](standard/standard#1316)
[因为standard and eslint-config-standard16+ 不再需要](standard/standard#1316)
ATTENTION: If you're coming to this issue from the npm deprecation warning, here's what you need to know:
standard
andeslint-config-standard
version 16.0.0 and later no longer requireeslint-plugin-standard
to function. If you have this package in yourpackage.json
you can remove it withnpm rm eslint-plugin-standard
and save some disk space and install time :)Here's the full v16.0.0 changelog: https://github.com/standard/standard/blob/master/CHANGELOG.md#1600---2020-10-28
We are only using one rule at this point:
no-callback-literal
. It would be nice to see if there's some way to eliminate the dependency and simplify the maintenance burden in some way.The text was updated successfully, but these errors were encountered: