home
This commit is contained in:
parent
a71a3b5593
commit
cb52890889
16657 changed files with 1483086 additions and 1 deletions
47
home/ags/node_modules/eslint-plugin-n/lib/rules/prefer-global/text-encoder.js
generated
vendored
Normal file
47
home/ags/node_modules/eslint-plugin-n/lib/rules/prefer-global/text-encoder.js
generated
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/**
|
||||
* @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: {
|
||||
TextEncoder: { [READ]: true },
|
||||
},
|
||||
modules: {
|
||||
util: {
|
||||
TextEncoder: { [READ]: true },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {
|
||||
description:
|
||||
'enforce either `TextEncoder` or `require("util").TextEncoder`',
|
||||
recommended: false,
|
||||
url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/text-encoder.md",
|
||||
},
|
||||
type: "suggestion",
|
||||
fixable: null,
|
||||
schema: [{ enum: ["always", "never"] }],
|
||||
messages: {
|
||||
preferGlobal:
|
||||
"Unexpected use of 'require(\"util\").TextEncoder'. Use the global variable 'TextEncoder' instead.",
|
||||
preferModule:
|
||||
"Unexpected use of the global variable 'TextEncoder'. Use 'require(\"util\").TextEncoder' instead.",
|
||||
},
|
||||
},
|
||||
|
||||
create(context) {
|
||||
return {
|
||||
"Program:exit"() {
|
||||
checkForPreferGlobal(context, trackMap)
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue