ags
This commit is contained in:
parent
eddf7cecb8
commit
aea798d119
16631 changed files with 1480363 additions and 257 deletions
44
home/ags/node_modules/eslint-plugin-n/lib/rules/prefer-global/process.js
generated
vendored
Normal file
44
home/ags/node_modules/eslint-plugin-n/lib/rules/prefer-global/process.js
generated
vendored
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
* @author Toru Nagashima
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
"use strict"
|
||||
|
||||
const { READ } = require("@eslint-community/eslint-utils")
|
||||
const checkForPreferGlobal = require("../../util/check-prefer-global")
|
||||
|
||||
const trackMap = {
|
||||
globals: {
|
||||
process: { [READ]: true },
|
||||
},
|
||||
modules: {
|
||||
process: { [READ]: true },
|
||||
},
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {
|
||||
description: 'enforce either `process` or `require("process")`',
|
||||
recommended: false,
|
||||
url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/process.md",
|
||||
},
|
||||
type: "suggestion",
|
||||
fixable: null,
|
||||
schema: [{ enum: ["always", "never"] }],
|
||||
messages: {
|
||||
preferGlobal:
|
||||
"Unexpected use of 'require(\"process\")'. Use the global variable 'process' instead.",
|
||||
preferModule:
|
||||
"Unexpected use of the global variable 'process'. Use 'require(\"process\")' instead.",
|
||||
},
|
||||
},
|
||||
|
||||
create(context) {
|
||||
return {
|
||||
"Program:exit"() {
|
||||
checkForPreferGlobal(context, trackMap)
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue