-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Labels
Description
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
Drew-Daniels and B14CK313