/** * @fileoverview Comments inside children section of tag should be placed inside braces. * @author Ben Vinegar */ 'use strict'; const docsUrl = require('../util/docsUrl'); const report = require('../util/report'); // ------------------------------------------------------------------------------ // Rule Definition // ------------------------------------------------------------------------------ const messages = { putCommentInBraces: 'Comments inside children section of tag should be placed inside braces', }; function checkText(node, context) { // since babel-eslint has the wrong node.raw, we'll get the source text const rawValue = context.getSourceCode().getText(node); if (/^\s*\/(\/|\*)/m.test(rawValue)) { // inside component, e.g.