StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
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.
48 lines
1.4 KiB
48 lines
1.4 KiB
4 years ago
|
/**
|
||
|
* @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.0.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)
|
||
|
})
|
||
|
},
|
||
|
}
|