file-ignored / I0013ΒΆ
Message emitted:
Ignoring entire file
Description:
Used to inform that the file will not be checked
Caution
This message is disabled by default. To enable it, add file-ignored
to the enable
option.
Caution
By default, this message will not fail the execution (pylint will return 0).
To make pylint fail for this message use the --fail-on=I0013
option
or --fail-on=I
to fail on all enabled informational messages.
Problematic code:
# pylint: skip-file
# -1: [file-ignored]
Correct code:
Additional details:
There's no checks at all for a file if it starts by # pylint: skip-file
.
Created by the main checker.