--- pageClass: "rule-details" sidebarDepth: 0 title: "lodash-template/no-html-comments" description: "disallow HTML comments. (ex. :ng: ``)" --- # lodash-template/no-html-comments > disallow HTML comments. (ex. :ng: ``) - :gear: This rule is included in `"plugin:lodash-template/recommended-with-html"` and `"plugin:lodash-template/all"`. ## Rule Details This rule reports HTML comments. ```html <% /* eslint "lodash-template/no-html-comments": "error" */ %> <% /* ✓ GOOD */ %> ``` ## Implementation - [Rule source](https://github.com/ota-meshi/eslint-plugin-lodash-template/blob/master/lib/rules/no-html-comments.js) - [Test source](https://github.com/ota-meshi/eslint-plugin-lodash-template/blob/master/tests/lib/rules/no-html-comments.js)