ags
This commit is contained in:
parent
eddf7cecb8
commit
aea798d119
16631 changed files with 1480363 additions and 257 deletions
76
home/ags/node_modules/eslint-plugin-n/lib/rules/prefer-promises/fs.js
generated
vendored
Normal file
76
home/ags/node_modules/eslint-plugin-n/lib/rules/prefer-promises/fs.js
generated
vendored
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
/**
|
||||
* @author Toru Nagashima
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
"use strict"
|
||||
|
||||
const { CALL, ReferenceTracker } = require("@eslint-community/eslint-utils")
|
||||
|
||||
const trackMap = {
|
||||
fs: {
|
||||
access: { [CALL]: true },
|
||||
copyFile: { [CALL]: true },
|
||||
open: { [CALL]: true },
|
||||
rename: { [CALL]: true },
|
||||
truncate: { [CALL]: true },
|
||||
rmdir: { [CALL]: true },
|
||||
mkdir: { [CALL]: true },
|
||||
readdir: { [CALL]: true },
|
||||
readlink: { [CALL]: true },
|
||||
symlink: { [CALL]: true },
|
||||
lstat: { [CALL]: true },
|
||||
stat: { [CALL]: true },
|
||||
link: { [CALL]: true },
|
||||
unlink: { [CALL]: true },
|
||||
chmod: { [CALL]: true },
|
||||
lchmod: { [CALL]: true },
|
||||
lchown: { [CALL]: true },
|
||||
chown: { [CALL]: true },
|
||||
utimes: { [CALL]: true },
|
||||
realpath: { [CALL]: true },
|
||||
mkdtemp: { [CALL]: true },
|
||||
writeFile: { [CALL]: true },
|
||||
appendFile: { [CALL]: true },
|
||||
readFile: { [CALL]: true },
|
||||
},
|
||||
}
|
||||
trackMap["node:fs"] = trackMap.fs
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {
|
||||
description: 'enforce `require("fs").promises`',
|
||||
recommended: false,
|
||||
url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/prefer-promises/fs.md",
|
||||
},
|
||||
fixable: null,
|
||||
messages: {
|
||||
preferPromises: "Use 'fs.promises.{{name}}()' instead.",
|
||||
},
|
||||
schema: [],
|
||||
type: "suggestion",
|
||||
},
|
||||
|
||||
create(context) {
|
||||
return {
|
||||
"Program:exit"(node) {
|
||||
const sourceCode = context.sourceCode ?? context.getSourceCode() // TODO: just use context.sourceCode when dropping eslint < v9
|
||||
const scope = sourceCode.getScope?.(node) ?? context.getScope() //TODO: remove context.getScope() when dropping support for ESLint < v9
|
||||
const tracker = new ReferenceTracker(scope, { mode: "legacy" })
|
||||
const references = [
|
||||
...tracker.iterateCjsReferences(trackMap),
|
||||
...tracker.iterateEsmReferences(trackMap),
|
||||
]
|
||||
|
||||
for (const { node, path } of references) {
|
||||
const name = path[path.length - 1]
|
||||
context.report({
|
||||
node,
|
||||
messageId: "preferPromises",
|
||||
data: { name },
|
||||
})
|
||||
}
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue