forked from mysticatea/eslint-plugin-node
-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathcrypto.js
More file actions
47 lines (43 loc) · 1.34 KB
/
crypto.js
File metadata and controls
47 lines (43 loc) · 1.34 KB
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
/**
* @author Pixel998
* 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 traceMap = {
globals: {
crypto: { [READ]: true },
},
modules: {
crypto: { webcrypto: { [READ]: true } },
"node:crypto": { webcrypto: { [READ]: true } },
},
}
/** @type {import('../rule-module').RuleModule} */
module.exports = {
meta: {
docs: {
description:
'enforce either `crypto` or `require("crypto").webcrypto`',
recommended: false,
url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-global/crypto.md",
},
type: "suggestion",
fixable: null,
schema: [{ enum: ["always", "never"] }],
messages: {
preferGlobal:
"Unexpected use of 'require(\"crypto\").webcrypto'. Use the global variable 'crypto' instead.",
preferModule:
"Unexpected use of the global variable 'crypto'. Use 'require(\"crypto\").webcrypto' instead.",
},
},
create(context) {
return {
"Program:exit"() {
checkForPreferGlobal(context, traceMap)
},
}
},
}