refactor start
This commit is contained in:
parent
bd49791e06
commit
e46d25f0b7
16699 changed files with 2 additions and 1484887 deletions
98
home/ags/node_modules/eslint-plugin-n/lib/rules/no-unpublished-bin.js
generated
vendored
98
home/ags/node_modules/eslint-plugin-n/lib/rules/no-unpublished-bin.js
generated
vendored
|
|
@ -1,98 +0,0 @@
|
|||
/**
|
||||
* @author Toru Nagashima
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
"use strict"
|
||||
|
||||
const path = require("path")
|
||||
const getConvertPath = require("../util/get-convert-path")
|
||||
const getNpmignore = require("../util/get-npmignore")
|
||||
const getPackageJson = require("../util/get-package-json")
|
||||
|
||||
/**
|
||||
* Checks whether or not a given path is a `bin` file.
|
||||
*
|
||||
* @param {string} filePath - A file path to check.
|
||||
* @param {string|object|undefined} binField - A value of the `bin` field of `package.json`.
|
||||
* @param {string} basedir - A directory path that `package.json` exists.
|
||||
* @returns {boolean} `true` if the file is a `bin` file.
|
||||
*/
|
||||
function isBinFile(filePath, binField, basedir) {
|
||||
if (!binField) {
|
||||
return false
|
||||
}
|
||||
if (typeof binField === "string") {
|
||||
return filePath === path.resolve(basedir, binField)
|
||||
}
|
||||
return Object.keys(binField).some(
|
||||
key => filePath === path.resolve(basedir, binField[key])
|
||||
)
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {
|
||||
description: "disallow `bin` files that npm ignores",
|
||||
recommended: true,
|
||||
url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unpublished-bin.md",
|
||||
},
|
||||
type: "problem",
|
||||
fixable: null,
|
||||
schema: [
|
||||
{
|
||||
type: "object",
|
||||
properties: {
|
||||
//
|
||||
convertPath: getConvertPath.schema,
|
||||
},
|
||||
},
|
||||
],
|
||||
messages: {
|
||||
invalidIgnored:
|
||||
"npm ignores '{{name}}'. Check 'files' field of 'package.json' or '.npmignore'.",
|
||||
},
|
||||
},
|
||||
create(context) {
|
||||
return {
|
||||
Program(node) {
|
||||
// Check file path.
|
||||
let rawFilePath = context.filename ?? context.getFilename()
|
||||
if (rawFilePath === "<input>") {
|
||||
return
|
||||
}
|
||||
rawFilePath = path.resolve(rawFilePath)
|
||||
|
||||
// Find package.json
|
||||
const p = getPackageJson(rawFilePath)
|
||||
if (!p) {
|
||||
return
|
||||
}
|
||||
|
||||
// Convert by convertPath option
|
||||
const basedir = path.dirname(p.filePath)
|
||||
const relativePath = getConvertPath(context)(
|
||||
path.relative(basedir, rawFilePath).replace(/\\/gu, "/")
|
||||
)
|
||||
const filePath = path.join(basedir, relativePath)
|
||||
|
||||
// Check this file is bin.
|
||||
if (!isBinFile(filePath, p.bin, basedir)) {
|
||||
return
|
||||
}
|
||||
|
||||
// Check ignored or not
|
||||
const npmignore = getNpmignore(filePath)
|
||||
if (!npmignore.match(relativePath)) {
|
||||
return
|
||||
}
|
||||
|
||||
// Report.
|
||||
context.report({
|
||||
node,
|
||||
messageId: "invalidIgnored",
|
||||
data: { name: relativePath },
|
||||
})
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue