docs/checks/missing_enable_comment.md in theme-check-1.10.3 vs docs/checks/missing_enable_comment.md in theme-check-1.11.0
- old
+ new
@@ -10,11 +10,11 @@
```liquid
<!doctype html>
<html>
<head>
- {% comment %}theme-check-disable ParserBlockingJavaScript{% endcomment %}
+ {% # theme-check-disable ParserBlockingJavaScript %}
<script src="https://cdnjs.com/jquery.min.js"></script>
</head>
<body>
<!-- ... -->
</body>
@@ -25,12 +25,12 @@
```liquid
<!doctype html>
<html>
<head>
- {% comment %}theme-check-disable ParserBlockingJavaScript{% endcomment %}
+ {% # theme-check-disable ParserBlockingJavaScript %}
<script src="https://cdnjs.com/jquery.min.js"></script>
- {% comment %}theme-check-enable ParserBlockingJavaScript{% endcomment %}
+ {% # theme-check-enable ParserBlockingJavaScript %}
</head>
<body>
<!-- ... -->
</body>
</html>