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.
50 lines
1.5 KiB
50 lines
1.5 KiB
4 years ago
|
/**
|
||
|
* @author Toru Nagashima
|
||
|
* See LICENSE file in root directory for full license.
|
||
|
*/
|
||
|
"use strict"
|
||
|
|
||
|
const checkPublish = require("../util/check-publish")
|
||
|
const getAllowModules = require("../util/get-allow-modules")
|
||
|
const getConvertPath = require("../util/get-convert-path")
|
||
|
const getResolvePaths = require("../util/get-resolve-paths")
|
||
|
const getTryExtensions = require("../util/get-try-extensions")
|
||
|
const visitRequire = require("../util/visit-require")
|
||
|
|
||
|
module.exports = {
|
||
|
meta: {
|
||
|
docs: {
|
||
|
description:
|
||
|
"disallow `require()` expressions which import private modules",
|
||
|
category: "Possible Errors",
|
||
|
recommended: true,
|
||
|
url:
|
||
|
"https://github.com/mysticatea/eslint-plugin-node/blob/v11.0.0/docs/rules/no-unpublished-require.md",
|
||
|
},
|
||
|
type: "problem",
|
||
|
fixable: null,
|
||
|
schema: [
|
||
|
{
|
||
|
type: "object",
|
||
|
properties: {
|
||
|
allowModules: getAllowModules.schema,
|
||
|
convertPath: getConvertPath.schema,
|
||
|
resolvePaths: getResolvePaths.schema,
|
||
|
tryExtensions: getTryExtensions.schema,
|
||
|
},
|
||
|
additionalProperties: false,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
create(context) {
|
||
|
const filePath = context.getFilename()
|
||
|
if (filePath === "<input>") {
|
||
|
return {}
|
||
|
}
|
||
|
|
||
|
return visitRequire(context, {}, targets => {
|
||
|
checkPublish(context, filePath, targets)
|
||
|
})
|
||
|
},
|
||
|
}
|