# Prevent Missing `platformos-check-enable` Comments (`MissingEnableComment`) This check ensures that when `platformos-check-disable` is used in your platformOS application, a corresponding `platformos-check-enable` comment is included to re-enable the checks. ## Examples The following examples show code snippets that either fail or pass this check: ### ✗ Incorrect Code Example (Avoid using this): ```liquid {% # platformos-check-disable ParserBlockingJavaScript %} ``` ### ✓ Correct Code Example (Use this instead): ```liquid {% # platformos-check-disable ParserBlockingJavaScript %} {% # platformos-check-enable ParserBlockingJavaScript %} ``` ## Version This check has been introduced in platformOS Check 0.3.0. ## Resources - [Rule Source][codesource] - [Documentation Source][docsource] [codesource]: /lib/platformos_check/checks/missing_enable_comment.rb [docsource]: /docs/checks/missing_enable_comment.md