-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
Updated to ESLint #80
Conversation
New dependencies detected. Learn more about Socket for GitHub ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why? I prefer the eslintrc format; nothing needs updating.
@@ -43,7 +43,7 @@ | |||
"@ljharb/eslint-config": "^21.1.0", | |||
"aud": "^2.0.3", | |||
"auto-changelog": "^2.4.0", | |||
"eslint": "=8.8.0", | |||
"eslint": "^8.8.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this makes the peer dep invalid; 8.8.0 is the last version that properly parses ES3 code with the strict pragma.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes I understand the issue now .
Thankyou for the response I will try to improve upon my shortcomings.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -1,6 +1,6 @@ | |||
'use strict'; | |||
|
|||
var crypto = require('crypto'); | |||
const crypto = require('crypto'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a breaking change for pre-const engines.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah an oversight on my part.
Thanks for the response.
I modified the ESLint package and also made some minor adjustments to index.js file.
Thank you.