Closed eduOS closed 7 years ago
For example I sometimes need some comments like # pylint: disable=not-callable or just # NOQA appending to the line to prevent showing the alert, possible to integrate?
# pylint: disable=not-callable
# NOQA
You can maybe fiddle with 'commentstring' or b:commentary_format to achieve the results you want.
'commentstring'
b:commentary_format
OK, thanks.
For example I sometimes need some comments like
# pylint: disable=not-callable
or just# NOQA
appending to the line to prevent showing the alert, possible to integrate?