PR-URL: https://github.com/nodejs/node/pull/27670 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
31 lines
918 B
JavaScript
31 lines
918 B
JavaScript
/**
|
|
* @fileoverview Config to enable all rules.
|
|
* @author Robert Fletcher
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Requirements
|
|
//------------------------------------------------------------------------------
|
|
|
|
const builtInRules = require("../lib/rules");
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Helpers
|
|
//------------------------------------------------------------------------------
|
|
|
|
const allRules = {};
|
|
|
|
for (const [ruleId, rule] of builtInRules) {
|
|
if (!rule.meta.deprecated) {
|
|
allRules[ruleId] = "error";
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** @type {import("../lib/shared/types").ConfigData} */
|
|
module.exports = { rules: allRules };
|