Skip to content

Commit

Permalink
fix: Ignore the nodejs-links for nodejs.org system (#3981)
Browse files Browse the repository at this point in the history
According to #3956, it seems we're ordering the links' titles with ASCII orders, however NOT all the docs (such as translations) and test\scripts\*.md, we DON'T need to cope
with this rule, so we should disable it manually as a special case.

Ref:
1. nodejs/remark-preset-lint-node#188.
2. nodejs/node#39170.
  • Loading branch information
SEWeiTung authored Jul 16, 2021
1 parent a654c6b commit b0b170c
Show file tree
Hide file tree
Showing 3 changed files with 11,852 additions and 21 deletions.
3 changes: 2 additions & 1 deletion .remarkrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
["remark-lint-no-literal-urls", false],
["remark-lint-no-trailing-spaces", false],
["remark-lint-no-undefined-references", false],
["remark-lint-prohibited-strings", false]
["remark-lint-prohibited-strings", false],
["remark-preset-lint-node/remark-lint-nodejs-links", false]
]
}
Loading

0 comments on commit b0b170c

Please sign in to comment.