Feature Description
It would be nice to ignore a single instance of a spelling issue rather than project wide or globally. Similar to how shellcheck does it:
# shellcheck disable=SC2016
PS4='+$BASH_SOURCE:$LINENO:$FUNCNAME: '
Use Case
The use case here is sometimes you're calling code that you have no control over and a function name has a weird spelling (e.g. fzf's advanced configuration uses _fzf_comprun()). comprun is a word that generally I want to be flagged as a spelling error, but in that one case I'd like to ignore it
Proposed Solution
Probably something like how shellcheck does it:
# shellcheck disable=SC2016
PS4='+$BASH_SOURCE:$LINENO:$FUNCNAME: '
Alternative Solutions
No response
Examples
No response
Additional Context
No response
Feature Description
It would be nice to ignore a single instance of a spelling issue rather than project wide or globally. Similar to how shellcheck does it:
Use Case
The use case here is sometimes you're calling code that you have no control over and a function name has a weird spelling (e.g. fzf's advanced configuration uses
_fzf_comprun()).comprunis a word that generally I want to be flagged as a spelling error, but in that one case I'd like to ignore itProposed Solution
Probably something like how shellcheck does it:
Alternative Solutions
No response
Examples
No response
Additional Context
No response