mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #5941 from blueyed/better-clint-note
src/clint.py: improve "Ignoring" message
This commit is contained in:
commit
947f1ebcb9
@ -3434,8 +3434,9 @@ def ProcessFile(filename, vlevel, extra_check_functions=[]):
|
|||||||
# When reading from stdin, the extension is unknown, so no cpplint tests
|
# When reading from stdin, the extension is unknown, so no cpplint tests
|
||||||
# should rely on the extension.
|
# should rely on the extension.
|
||||||
if filename != '-' and file_extension not in _valid_extensions:
|
if filename != '-' and file_extension not in _valid_extensions:
|
||||||
sys.stderr.write('Ignoring %s; not a valid file name '
|
sys.stderr.write('Ignoring {}; only linting {} files\n'.format(
|
||||||
'(%s)\n' % (filename, ', '.join(_valid_extensions)))
|
filename,
|
||||||
|
', '.join('.{}'.format(ext) for ext in _valid_extensions)))
|
||||||
else:
|
else:
|
||||||
ProcessFileData(filename, file_extension, lines, Error,
|
ProcessFileData(filename, file_extension, lines, Error,
|
||||||
extra_check_functions)
|
extra_check_functions)
|
||||||
|
Loading…
Reference in New Issue
Block a user