You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
/** |
|
* @author Toru Nagashima |
|
* See LICENSE file in root directory for full license. |
|
*/ |
|
"use strict" |
|
|
|
const checkExistence = require("../util/check-existence") |
|
const getAllowModules = require("../util/get-allow-modules") |
|
const getResolvePaths = require("../util/get-resolve-paths") |
|
const getTryExtensions = require("../util/get-try-extensions") |
|
const visitImport = require("../util/visit-import") |
|
|
|
module.exports = { |
|
meta: { |
|
docs: { |
|
description: |
|
"disallow `import` declarations which import non-existence modules", |
|
category: "Possible Errors", |
|
recommended: true, |
|
url: |
|
"https://github.com/mysticatea/eslint-plugin-node/blob/v11.1.0/docs/rules/no-missing-import.md", |
|
}, |
|
type: "problem", |
|
fixable: null, |
|
schema: [ |
|
{ |
|
type: "object", |
|
properties: { |
|
allowModules: getAllowModules.schema, |
|
tryExtensions: getTryExtensions.schema, |
|
resolvePaths: getResolvePaths.schema, |
|
}, |
|
additionalProperties: false, |
|
}, |
|
], |
|
}, |
|
create(context) { |
|
const filePath = context.getFilename() |
|
if (filePath === "<input>") { |
|
return {} |
|
} |
|
|
|
return visitImport(context, {}, targets => { |
|
checkExistence(context, targets) |
|
}) |
|
}, |
|
}
|
|
|