• [AST Eslint] No console with schema options && isPrimitive


    // eslint exercise 4 (no-console)
    // When you're finished with this exercise, run
    //   "npm start exercise.eslint.5"
    //   to move on to the next exercise
    
    const disallowedMethods = ['log', 'info', 'warn', 'error', 'dir']
    
    module.exports = {
      meta: {
        schema: [
          {
            type: 'object',
            properties: {
              allowedMethods: {
                type: 'array',
                items: {
                  enum: ['log', 'info', 'warn', 'error', 'dir'],
                },
                minItems: 1,
                uniqueItems: true,
              },
            },
          },
        ],
      },
      create(context) {
        const config = context.options[0] || {}
        const allowedMethods = config.allowedMethods || []
        return {
          Identifier(node) {
            if (
              !looksLike(node, {
                name: 'console',
                parent: {
                  type: 'MemberExpression',
                  parent: {type: 'CallExpression'},
                  property: {
                    name: val =>
                      !allowedMethods.includes(val) &&
                      disallowedMethods.includes(val),
                  },
                },
              })
            ) {
              return
            }
            context.report({
              node: node.parent.property,
              message: 'Using console is not allowed',
            })
          },
        }
      },
    }
    
    function looksLike(a, b) {
      return (
        a &&
        b &&
        Object.keys(b).every(bKey => {
          const bVal = b[bKey]
          const aVal = a[bKey]
          if (typeof bVal === 'function') {
            return bVal(aVal)
          }
          return isPrimitive(bVal) ? bVal === aVal : looksLike(aVal, bVal)
        })
      )
    }
    
    function isPrimitive(val) {
      return val == null || /^[sbn]/.test(typeof val)
    }
    // eslint exercise 4 (no-console)
    // When you're finished with this exercise, run
    //   "npm start exercise.eslint.5"
    //   to move on to the next exercise
    
    const {RuleTester} = require('eslint')
    const rule = require('./no-console')
    
    const ruleTester = new RuleTester()
    ruleTester.run('no-console', rule, {
      valid: [
        'info()',
        'console',
        'console.log',
        'console.baz()',
        {code: 'console.warn()', options: [{allowedMethods: ['warn']}]},
      ],
      invalid: [
        invalid('console.log()'),
        invalid('console.info()'),
        invalid('console.warn()'),
      ],
    })
    
    function invalid(code) {
      return {
        code,
        errors: [{message: 'Using console is not allowed'}],
      }
    }
    
  • 相关阅读:
    Codeforces Round #270 solution
    Codeforces Round #269 (Div. 2) solution
    Codeforces Round #268 (Div. 1) solution(upd div 1 C,div 2 A, B
    Codeforces Round #267 (Div. 2) solution
    Unity 绘制多边形
    DOTween 模仿NGUI Tween
    图像混合模式 正片叠底、滤色、叠加
    一只羊的四个月可以生一只小羊,小羊四个月后又可以生一只小羊 问50个月后有多少只羊(羊不会死)
    Unity CCTween UGUI 动画插件
    Unity UGUI 使用 CCTween 实现 打字效果
  • 原文地址:https://www.cnblogs.com/Answer1215/p/12231422.html
Copyright © 2020-2023  润新知