Constnium/node_modules/eslint/lib/unsupported-api.js

24 lines
704 B
JavaScript
Raw Normal View History

2022-06-23 02:27:43 +02:00
/**
* @fileoverview APIs that are not officially supported by ESLint.
* These APIs may change or be removed at any time. Use at your
* own risk.
* @author Nicholas C. Zakas
*/
"use strict";
//-----------------------------------------------------------------------------
// Requirements
//-----------------------------------------------------------------------------
const { FileEnumerator } = require("./cli-engine/file-enumerator");
//-----------------------------------------------------------------------------
// Exports
//-----------------------------------------------------------------------------
module.exports = {
builtinRules: require("./rules"),
FileEnumerator
};