refactor start
This commit is contained in:
parent
bd49791e06
commit
e46d25f0b7
16699 changed files with 2 additions and 1484887 deletions
46
home/ags/node_modules/eslint-plugin-n/lib/util/get-resolve-paths.js
generated
vendored
46
home/ags/node_modules/eslint-plugin-n/lib/util/get-resolve-paths.js
generated
vendored
|
|
@ -1,46 +0,0 @@
|
|||
/**
|
||||
* @author Toru Nagashima
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
"use strict"
|
||||
|
||||
const DEFAULT_VALUE = Object.freeze([])
|
||||
|
||||
/**
|
||||
* Gets `resolvePaths` property from a given option object.
|
||||
*
|
||||
* @param {object|undefined} option - An option object to get.
|
||||
* @returns {string[]|null} The `allowModules` value, or `null`.
|
||||
*/
|
||||
function get(option) {
|
||||
if (option && option.resolvePaths && Array.isArray(option.resolvePaths)) {
|
||||
return option.resolvePaths.map(String)
|
||||
}
|
||||
return null
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets "resolvePaths" setting.
|
||||
*
|
||||
* 1. This checks `options` property, then returns it if exists.
|
||||
* 2. This checks `settings.n` | `settings.node` property, then returns it if exists.
|
||||
* 3. This returns `[]`.
|
||||
*
|
||||
* @param {RuleContext} context - The rule context.
|
||||
* @returns {string[]} A list of extensions.
|
||||
*/
|
||||
module.exports = function getResolvePaths(context, optionIndex = 0) {
|
||||
return (
|
||||
get(context.options && context.options[optionIndex]) ||
|
||||
get(
|
||||
context.settings && (context.settings.n || context.settings.node)
|
||||
) ||
|
||||
DEFAULT_VALUE
|
||||
)
|
||||
}
|
||||
|
||||
module.exports.schema = {
|
||||
type: "array",
|
||||
items: { type: "string" },
|
||||
uniqueItems: true,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue