We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Having multiple after the # breaks the line-ignore
#
test: fpr: something # codespell:ignore fpr
Fixing this (removing the whitespaces) clashed with https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.comments default settings for min-spaces-from-content.
min-spaces-from-content
The text was updated successfully, but these errors were encountered:
I don't think that's what min-spaces-from-content is about. It doesn't enforce a minimal number of spaces after the number sign #:
Instead it enforces spaces before the number sign #:
Sorry, something went wrong.
With that said, it remains a bug that needs to be fixed. PR welcome!
I guess \s?codespell:ignore should be changed to \s*codespell:ignore.
\s?codespell:ignore
\s*codespell:ignore
codespell/codespell_lib/_codespell.py
Line 63 in 3f0532c
Successfully merging a pull request may close this issue.
Having multiple
after the
#
breaks the line-ignoreFixing this (removing the whitespaces) clashed with https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.comments default settings for
min-spaces-from-content
.The text was updated successfully, but these errors were encountered: