Sha256: e60f6e993459514ccdbd3fe0124c2769840790c0ee678559e04f4d7915b8b6f7

Contents?: true

Size: 1.18 KB

Versions: 44

Compression:

Stored size: 1.18 KB

Contents

/**
 * @author Toru Nagashima
 * See LICENSE file in root directory for full license.
 */
"use strict"

const DEFAULT_VALUE = Object.freeze([])

/**
 * Gets `allowModules` 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.allowModules && Array.isArray(option.allowModules)) {
        return option.allowModules.map(String)
    }
    return null
}

/**
 * Gets "allowModules" setting.
 *
 * 1. This checks `options` property, then returns it if exists.
 * 2. This checks `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 getAllowModules(context) {
    return (
        get(context.options && context.options[0]) ||
        get(context.settings && context.settings.node) ||
        DEFAULT_VALUE
    )
}

module.exports.schema = {
    type: "array",
    items: {
        type: "string",
        pattern: "^(?:@[a-zA-Z0-9_\\-.]+/)?[a-zA-Z0-9_\\-.]+$",
    },
    uniqueItems: true,
}

Version data entries

44 entries across 44 versions & 2 rubygems

Version Path
govuk_publishing_components-16.20.0 node_modules/eslint-plugin-node/lib/util/get-allow-modules.js
govuk_publishing_components-16.19.0 node_modules/eslint-plugin-node/lib/util/get-allow-modules.js
govuk_publishing_components-16.18.0 node_modules/eslint-plugin-node/lib/util/get-allow-modules.js
govuk_publishing_components-16.17.0 node_modules/eslint-plugin-node/lib/util/get-allow-modules.js