-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Update devDependencies to last stable #1409
Conversation
…ing` standard rule (eslint-config-standard#124).
I personally prefer spaces in object literals such as |
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.
Thanks! These were severely out of date. I seem to recall @UziTech pinning glob-to-regexp
for some reason but I'm not sure why.
Apologies for the interruption...
Do you mean "latest"? Last implies that something is EOL'd from a quick read in my emails/notifications. |
@Martii all the versions are described as "stable" at the link above. I think in semver everything is considered "stable" unless a postfix such as "-alpha" or "-rc" is appended. |
|
I probably just forgot the caret ( |
Update devDependencies to versions found at https://david-dm.org/markedjs/marked?type=dev
Had to disable new eslint rule to avoid introducing codebase changes. We have mixed type of literal objects:
so we might go for one or the other, or leave them as they are.
If we consider linting more aggressively, also the rule
space-before-function-paren
can be enforced, and we might take the chance and change indentation warnings into errors so they're caught by the CI robot. Let me know.