terraform-plantuml icon indicating copy to clipboard operation
terraform-plantuml copied to clipboard

Update remark-preset-lint-consistent 5.1.2 → 6.0.0 (major)

Open depfu[bot] opened this issue 2 months ago • 0 comments

Here is everything you need to know about this upgrade. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ remark-preset-lint-consistent (5.1.2 → 6.0.0) · Repo · Changelog

Release Notes

6.0.0

Hi! 👋

With 6.0.0, rules are no longer in the remark-lint package. In fact, remark lint doesn’t do much, other than controlling messages.

Rules are now each in their own package. You don’t have to npm install and .use() each package though, you can install and use presets instead. If you find yourself installing many rules to update, maybe create a preset too?

By giving more power to presets over the remark-lint package itself, I think rules, especially external rules, will prosper!

First off, if “presets” changed, the below diff shows how you can update:

 "dependencies": {
   "remark-cli": "^0.0.0",
   "remark-lint": "^0.0.0",
   "remark-preset-lint-consistent": "^0.0.0",
   // ...
 },
 "remarkConfig": {
-  "presets": ["lint-consistent"]
+  "plugins": ["preset-lint-consistent"]
 }

Second, if you used remark-lint directly, you need to change your config as follows.

 "dependencies": {
   "remark-cli": "^0.0.0",
   "remark-lint": "^0.0.0",
+  "remark-lint-unordered-list-marker-style": "^0.0.0",
+  "remark-lint-list-item-bullet-indent": "^0.0.0",
+  "remark-lint-no-multiple-toplevel-headings": "^0.0.0",
+  "remark-lint-maximum-line-length": "^0.0.0",
+  "remark-lint-maximum-heading-length": "^0.0.0",
+  "remark-lint-no-tabs": "^0.0.0",
   // ...
 },
 "remarkConfig": {
-  "plugins": {
-    "remark-lint": {
-    "unordered-list-marker-style": "consistent",
-    "list-item-bullet-indent": true,
-    "no-multiple-toplevel-headings": true,
-    "maximum-line-length": 9000,
-    "maximum-heading-length": 300,
-    "no-tabs": true,
-    //  ...
-  }
+  "plugins": [
+    "remark-lint",
+    ["remark-lint-unordered-list-marker-style", "consistent"],
+    "remark-lint-list-item-bullet-indent",
+    "remark-lint-no-multiple-toplevel-headings",
+    ["remark-lint-maximum-line-length", 9000],
+    ["remark-lint-maximum-heading-length", 300],
+    "remark-lint-no-tabs",
+    //  ...
+  ]

Finally, if you use remark on the API, change your code as follows:

var remark = require('remark');
var lint = require('remark-lint');
+var unorderedListMarkerStyle = require('remark-lint-unordered-list-marker-style');
+var listItemBulletIndent = require('remark-lint-list-item-bullet-indent');
+var noMultipleToplevelHeadings = require('remark-lint-no-multiple-toplevel-headings');

remark() - .use(lint, { - unorderedListMarkerStyle: 'consistent', - listItemBulletIndent: true, - noMultipleToplevelHeadings: true - maximumLineLength: false - }) + .use(lint) + .use(unorderedListMarkerStyle, 'consistent') + .use(listItemBulletIndent) + .use(noMultipleToplevelHeadings) // ...

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 6 commits:

↗️ remark-lint-blockquote-indentation (indirect, 3.1.1 → 4.0.0) · Repo · Changelog

Release Notes

4.0.0

  • Add support for setting allowed file-name characters (fd908a4)
  • Fix parameters when using reset (b8f52a9)
  • Update list-item-spacing message (d562d6e)
  • Fix checkbox lists starting with links (019ff36)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 6 commits:

↗️ remark-lint-code-block-style (indirect, 3.1.0 → 4.0.0) · Repo · Changelog

Release Notes

4.0.0

  • Add support for setting allowed file-name characters (fd908a4)
  • Fix parameters when using reset (b8f52a9)
  • Update list-item-spacing message (d562d6e)
  • Fix checkbox lists starting with links (019ff36)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 11 commits:

↗️ remark-lint-emphasis-marker (indirect, 3.1.1 → 4.0.0) · Repo · Changelog

Release Notes

4.0.0

  • Add support for setting allowed file-name characters (fd908a4)
  • Fix parameters when using reset (b8f52a9)
  • Update list-item-spacing message (d562d6e)
  • Fix checkbox lists starting with links (019ff36)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 6 commits:

↗️ remark-lint-heading-style (indirect, 3.1.1 → 4.0.0) · Repo · Changelog

Release Notes

4.0.0

  • Add support for setting allowed file-name characters (fd908a4)
  • Fix parameters when using reset (b8f52a9)
  • Update list-item-spacing message (d562d6e)
  • Fix checkbox lists starting with links (019ff36)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 6 commits:

↗️ remark-lint-list-item-content-indent (indirect, 3.1.1 → 4.0.0) · Repo · Changelog

Release Notes

4.0.0

  • Add support for setting allowed file-name characters (fd908a4)
  • Fix parameters when using reset (b8f52a9)
  • Update list-item-spacing message (d562d6e)
  • Fix checkbox lists starting with links (019ff36)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 6 commits:

↗️ remark-lint-strong-marker (indirect, 3.1.1 → 4.0.0) · Repo · Changelog

Release Notes

4.0.0

  • Add support for setting allowed file-name characters (fd908a4)
  • Fix parameters when using reset (b8f52a9)
  • Update list-item-spacing message (d562d6e)
  • Fix checkbox lists starting with links (019ff36)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 6 commits:

🆕 remark-lint-ordered-list-marker-value (added, 4.0.0)

🆕 space-separated-tokens (added, 2.0.2)


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

depfu[bot] avatar Apr 17 '24 14:04 depfu[bot]