.. _file-ignored: 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:** .. literalinclude:: /data/messages/f/file-ignored/bad.py :language: python **Correct code:** .. literalinclude:: /data/messages/f/file-ignored/good.py :language: python **Additional details:** There's no checks at all for a file if it starts by ``# pylint: skip-file``. Created by the `main `__ checker.