Skip to content
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

Chore: update dev deps to latest #14624

Merged
merged 4 commits into from Aug 5, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .markdownlint.yml
Expand Up @@ -16,6 +16,7 @@ MD029: false # Ordered list item prefix
MD030: false # Spaces after list markers
MD033: false # Allow inline HTML
MD034: false # Bare URL used
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is unrelated and should be removed from this PR

Copy link
Sponsor Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm guessing it's related to updating markdownlint.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, it's a new added rule that we were not following.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right. I’m saying such a change doesn’t belong in a PR that is just to upgrade dependencies.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to not change the config, pushed a commit to fix the md037 issues: b8b032a.

Copy link
Sponsor Member

@bmish bmish Aug 5, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would actually recommend just ignoring CHANGELOG.md which is autogenerated in a .markdownlintignore file like this: https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/blob/master/.markdownlintignore

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sounds good!

Copy link
Sponsor Member

@bmish bmish Aug 5, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aladdin-add it looks like this codebase is using markdownlint via CLI and also via its NodeJS API in Makefile.js. Only the CLI version will automatically consider the .markdownlintignore file. I think we should probably move this dependency upgrade to a separate PR since it is becoming more complicated. I can take that on if that sounds good.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

agreed to put in another PR! I will revert the markdownlint version.

Copy link
Sponsor Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Separate PR to update markdownlint: #14883

MD037: false # Spaces inside emphasis markers
MD040: false # Fenced code blocks should have a language specified
MD041: false # First line in file should be a top level header
MD046: false # Code block style
18 changes: 9 additions & 9 deletions package.json
Expand Up @@ -92,15 +92,15 @@
"cheerio": "^0.22.0",
"common-tags": "^1.8.0",
"core-js": "^3.1.3",
"dateformat": "^3.0.3",
"dateformat": "^4.5.1",
"ejs": "^3.0.2",
"eslint": "file:.",
"eslint-config-eslint": "file:packages/eslint-config-eslint",
"eslint-plugin-eslint-plugin": "^3.5.3",
"eslint-plugin-internal-rules": "file:tools/internal-rules",
"eslint-plugin-jsdoc": "^25.4.3",
"eslint-plugin-jsdoc": "^33.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-release": "^2.0.0",
"eslint-release": "^3.1.2",
"eslump": "^3.0.0",
"esprima": "^4.0.1",
"fs-teardown": "0.1.1",
Expand All @@ -111,22 +111,22 @@
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"lint-staged": "^10.1.2",
"lint-staged": "^11.0.0",
"load-perf": "^0.2.0",
"markdownlint": "^0.19.0",
"markdownlint-cli": "^0.22.0",
"markdownlint": "^0.23.1",
"markdownlint-cli": "^0.27.1",
"memfs": "^3.0.1",
"mocha": "^8.3.2",
"mocha-junit-reporter": "^2.0.0",
"node-polyfill-webpack-plugin": "^1.0.3",
"npm-license": "^0.3.3",
"nyc": "^15.0.1",
"proxyquire": "^2.0.1",
"puppeteer": "^7.1.0",
"recast": "^0.19.0",
"puppeteer": "^9.1.1",
"recast": "^0.20.4",
"regenerator-runtime": "^0.13.2",
"shelljs": "^0.8.2",
"sinon": "^9.0.1",
"sinon": "^11.0.0",
"temp": "^0.9.0",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
Expand Down