123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**
- * @fileoverview Comments inside children section of tag should be placed inside braces.
- * @author Ben Vinegar
- */
- 'use strict';
- const docsUrl = require('../util/docsUrl');
- // ------------------------------------------------------------------------------
- // Rule Definition
- // ------------------------------------------------------------------------------
- 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. <div>literal</div>
- if (
- node.parent.type !== 'JSXAttribute'
- && node.parent.type !== 'JSXExpressionContainer'
- && node.parent.type.indexOf('JSX') !== -1
- ) {
- context.report({
- node,
- messageId: 'putCommentInBraces'
- });
- }
- }
- }
- module.exports = {
- meta: {
- docs: {
- description: 'Comments inside children section of tag should be placed inside braces',
- category: 'Possible Errors',
- recommended: true,
- url: docsUrl('jsx-no-comment-textnodes')
- },
- messages: {
- putCommentInBraces: 'Comments inside children section of tag should be placed inside braces'
- },
- schema: [{
- type: 'object',
- properties: {},
- additionalProperties: false
- }]
- },
- create(context) {
- // --------------------------------------------------------------------------
- // Public
- // --------------------------------------------------------------------------
- return {
- Literal(node) {
- checkText(node, context);
- },
- JSXText(node) {
- checkText(node, context);
- }
- };
- }
- };
|