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

clippy: fix #1602

Merged
merged 1 commit into from
Apr 5, 2025
Merged

clippy: fix #1602

merged 1 commit into from
Apr 5, 2025

Conversation

phip1611
Copy link
Member

@phip1611 phip1611 commented Apr 5, 2025

This unblocks #1600.

Instead of applying the fixes, it is better to ignore the lints. In once case, we have false positives. In the other case, we actually like the old style. For instance:

We prefer

/// # Parameters
/// * `some_param` This parameter has a
///    very long description

over

/// # Parameters
/// * `some_param` This parameter has a
/// very long description

Checklist

  • Sensible git history (for example, squash "typo" or "fix" commits). See the Rewriting History guide for help.
  • Update the changelog (if necessary)

@phip1611 phip1611 requested a review from nicholasbishop April 5, 2025 06:13
@phip1611 phip1611 mentioned this pull request Apr 5, 2025
2 tasks
@nicholasbishop
Copy link
Member

nicholasbishop commented Apr 5, 2025

We prefer

/// # Parameters
/// * `some_param` This parameter has a
///    very long description

over

/// # Parameters
/// * `some_param` This parameter has a
/// very long description

I think what the lint is saying is not that it wants the second line fully de-indented, it just wants it lined up under the first character of the first line after the asterisk and space. So, in your example, under the backtick instead of under the s. Let's do that, and then we can keep the indentation lint enabled.

@phip1611
Copy link
Member Author

phip1611 commented Apr 5, 2025

Ohh, you're right. Thank you!

@nicholasbishop nicholasbishop added this pull request to the merge queue Apr 5, 2025
Merged via the queue into main with commit f6c0abc Apr 5, 2025
19 checks passed
@nicholasbishop nicholasbishop deleted the clippy branch April 5, 2025 19:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants