Sometimes it is not convinient to write a codespell ignore comment on the line that I want to ignore.
Other linters allow for writing the ignoring comment above the to-ignored line.
So instead of doing this and as a result have a very long string:
mode: "0644"
regexp: "^(options|blacklist) {{ item }}" # codespell:ignore blacklist
I want to be able to do this:
mode: "0644"
# codespell:ignore blacklist
regexp: "^(options|blacklist) {{ item }}"
Sometimes it is not convinient to write a codespell ignore comment on the line that I want to ignore.
Other linters allow for writing the ignoring comment above the to-ignored line.
So instead of doing this and as a result have a very long string:
I want to be able to do this: