-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
Add emojis to visually distinguish between hints and lints #770
Conversation
cc @beckermr |
pre-commit.ci autofix |
Mirror the code from conda-forge/conda-forge-webservices#770
As I explain [here](conda-forge/conda-smithy#2126 (comment)) it can be really easy to miss the distinction between hints and linting errors. (The difference is indicated in a big block of boilerplate text.) Using ℹ️ for hints and ❌ for linter errors, I hope to make this easier to understand the severity at a glance.
This will potentially break some spacing hacks in hints with sub lists. Is there a way we can account for that with the emoji? |
Hmm, can you point to an example so that I understand better? |
See this link: conda-forge/conda-smithy#2126. I used a precise number of spaces to format things properly. |
Also there are two linting paths. The one in use is the one in the GitHub actions integration submodule. We'll want to change that one too. |
Thanks, got it in f79e381 |
Description
As I explain here it can be really easy to miss the distinction between hints and linting errors. (The difference is indicated in a big block of boilerplate text.) Using ℹ️ for hints and ❌ for linter errors, I hope to make this easier to understand the severity at a glance.