-
-
Notifications
You must be signed in to change notification settings - Fork 319
Replace unmaintained prettier formatter with biome and rumdl
#2772
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
base: main
Are you sure you want to change the base?
Changes from all commits
9a06afe
ab60146
f5f17e6
ea9d98c
c0e47ae
acbda5d
dc57efd
0963df6
bac5c1f
b835c28
43b9917
e52e93a
167ed6c
f8384b0
8387d7f
861a815
ac65189
1cefef0
c47be9a
70dfe96
c00f5a5
cb5e8d3
0a16224
02b53f0
7168e33
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| ## Contributing | ||
|
|
||
| To edit the documentation pages displayed at | ||
| [conda-forge.org/docs/][https://conda-forge.org/docs/], please edit the source | ||
| [conda-forge.org/docs/](https://conda-forge.org/docs/), please edit the source | ||
| Markdown files in `docs/`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| [global] | ||
| disable = [ | ||
| "MD013", # line length | ||
| "MD014", # command should show output (removes '$' immediately) | ||
| "MD030", # spaces after list marker | ||
| "MD033", # inline HTML | ||
| "MD034", # URL without angle brackets | ||
| "MD036", # emphasis used instead of heading | ||
| "MD040", # code block missing language (gets fixed to "text") | ||
| "MD059", # nondescriptive link text | ||
| ] | ||
|
|
||
| [per-file-ignores] | ||
| ".github/*.md" = ["MD041"] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "formatter": { | ||
| "indentStyle": "space" | ||
| }, | ||
| "linter": { | ||
| "rules": { | ||
| "complexity": { | ||
| "noImportantStyles": "off" | ||
| }, | ||
| "style": { | ||
| "noDescendingSpecificity": "off" | ||
| } | ||
| } | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ authors: | |
| - core | ||
| --- | ||
|
|
||
| # Ten years of conda-forge! | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I get it that we don't want trailing
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, that's why I initially disabled it. Do you want to keep it this way, or perhaps use excludes for these lines? |
||
| # Ten years of conda-forge | ||
|
|
||
| Today, 2025-04-11, marks the 10th anniversary of the conda-forge community. | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,9 @@ title: 'conda-forge community' | |
| # Community | ||
|
|
||
| - [Getting in touch](getting-in-touch.md) | ||
| <!-- rumdl-disable MD057 --> | ||
| - [Governance](governance.md) | ||
| <!-- rumdl-enable MD057 --> | ||
|
Comment on lines
+8
to
+10
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a perfectly normal link and list item, why is rumdl complaining about it?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| - [Joining the team](joining-the-team.md) | ||
| - [Contracting](contracting.md) | ||
| - [Meetings](meetings.mdx) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| # Conda forge now has a magical status bar for tracking the progress of migrations. | ||
| # Conda forge now has a magical status bar for tracking the progress of migrations | ||
|
|
||
| You can find this at | ||
| [conda-forge.org/status](https://conda-forge.org/status). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| # A minimal python 3.7 build is now available across all platforms and both compilers! | ||
| # A minimal python 3.7 build is now available across all platforms and both compilers | ||
|
|
||
| Yay! |
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.
I think we should enable MD026 and MD041 in this PR.
MD059 is also interesting but better done in a separate PR.
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.
Done, though MD041 (sorry, wrong commit message) implies we can't have
<a id=""/>prior to it.