Blame view

node_modules/eslint-plugin-promise/rules/no-callback-in-promise.js 1.47 KB
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  /**
   * Rule: no-callback-in-promise
   * Avoid calling back inside of a promise
   */
  
  'use strict'
  
  const getDocsUrl = require('./lib/get-docs-url')
  const hasPromiseCallback = require('./lib/has-promise-callback')
  const isInsidePromise = require('./lib/is-inside-promise')
  const isCallback = require('./lib/is-callback')
  
  module.exports = {
    meta: {
      docs: {
        url: getDocsUrl('no-callback-in-promise')
      }
    },
    create: function(context) {
      return {
        CallExpression: function(node) {
          const options = context.options[0] || {}
          const exceptions = options.exceptions || []
          if (!isCallback(node, exceptions)) {
            // in general we send you packing if you're not a callback
            // but we also need to watch out for whatever.then(cb)
            if (hasPromiseCallback(node)) {
              const name =
                node.arguments && node.arguments[0] && node.arguments[0].name
              if (
                name === 'callback' ||
                name === 'cb' ||
                name === 'next' ||
                name === 'done'
              ) {
                context.report({
                  node: node.arguments[0],
                  message: 'Avoid calling back inside of a promise.'
                })
              }
            }
            return
          }
          if (context.getAncestors().some(isInsidePromise)) {
            context.report({
              node,
              message: 'Avoid calling back inside of a promise.'
            })
          }
        }
      }
    }
  }