refactor start
This commit is contained in:
parent
bd49791e06
commit
e46d25f0b7
16699 changed files with 2 additions and 1484887 deletions
58
home/ags/node_modules/eslint-plugin-n/lib/rules/no-restricted-import.js
generated
vendored
58
home/ags/node_modules/eslint-plugin-n/lib/rules/no-restricted-import.js
generated
vendored
|
|
@ -1,58 +0,0 @@
|
|||
/**
|
||||
* @author Toru Nagashima
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
"use strict"
|
||||
|
||||
const { checkForRestriction, messages } = require("../util/check-restricted")
|
||||
const visit = require("../util/visit-import")
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: "suggestion",
|
||||
docs: {
|
||||
description:
|
||||
"disallow specified modules when loaded by `import` declarations",
|
||||
recommended: false,
|
||||
url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-restricted-import.md",
|
||||
},
|
||||
fixable: null,
|
||||
schema: [
|
||||
{
|
||||
type: "array",
|
||||
items: {
|
||||
anyOf: [
|
||||
{ type: "string" },
|
||||
{
|
||||
type: "object",
|
||||
properties: {
|
||||
name: {
|
||||
anyOf: [
|
||||
{ type: "string" },
|
||||
{
|
||||
type: "array",
|
||||
items: { type: "string" },
|
||||
additionalItems: false,
|
||||
},
|
||||
],
|
||||
},
|
||||
message: { type: "string" },
|
||||
},
|
||||
additionalProperties: false,
|
||||
required: ["name"],
|
||||
},
|
||||
],
|
||||
},
|
||||
additionalItems: false,
|
||||
},
|
||||
],
|
||||
messages,
|
||||
},
|
||||
|
||||
create(context) {
|
||||
const opts = { includeCore: true }
|
||||
return visit(context, opts, targets =>
|
||||
checkForRestriction(context, targets)
|
||||
)
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue