Blame view

node_modules/eslint-plugin-node/lib/rules/no-unpublished-require.js 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  /**
   * @author Toru Nagashima
   * @copyright 2016 Toru Nagashima. All rights reserved.
   * See LICENSE file in root directory for full license.
   */
  "use strict"
  
  //------------------------------------------------------------------------------
  // Requirements
  //------------------------------------------------------------------------------
  
  const checkPublish = require("../util/check-publish")
  const getAllowModules = require("../util/get-allow-modules")
  const getConvertPath = require("../util/get-convert-path")
  const getDocsUrl = require("../util/get-docs-url")
  const getRequireTargets = require("../util/get-require-targets")
  const getResolvePaths = require("../util/get-resolve-paths")
  const getTryExtensions = require("../util/get-try-extensions")
  
  //------------------------------------------------------------------------------
  // Helpers
  //------------------------------------------------------------------------------
  
  /**
   * The definition of this rule.
   *
   * @param {RuleContext} context - The rule context to check.
   * @returns {object} The definition of this rule.
   */
  function create(context) {
      const filePath = context.getFilename()
      if (filePath === "<input>") {
          return {}
      }
  
      return {
          "Program:exit"() {
              checkPublish(
                  context,
                  filePath,
                  getRequireTargets(context)
              )
          },
      }
  }
  
  //------------------------------------------------------------------------------
  // Rule Definition
  //------------------------------------------------------------------------------
  
  module.exports = {
      create,
      meta: {
          docs: {
              description: "disallow `require()` expressions of private things",
              category: "Possible Errors",
              recommended: true,
              url: getDocsUrl("no-unpublished-require.md"),
          },
          fixable: false,
          schema: [
              {
                  type: "object",
                  properties: {
                      allowModules: getAllowModules.schema,
                      convertPath: getConvertPath.schema,
                      resolvePaths: getResolvePaths.schema,
                      tryExtensions: getTryExtensions.schema,
                  },
                  additionalProperties: false,
              },
          ],
      },
  }