Bump packages to fix linter
This commit is contained in:
parent
ed9506bbaf
commit
0a11e3fdd9
6063 changed files with 378752 additions and 306784 deletions
27
node_modules/eslint/lib/unsupported-api.js
generated
vendored
Normal file
27
node_modules/eslint/lib/unsupported-api.js
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/**
|
||||
* @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");
|
||||
const { FlatESLint } = require("./eslint/flat-eslint");
|
||||
const FlatRuleTester = require("./rule-tester/flat-rule-tester");
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Exports
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
module.exports = {
|
||||
builtinRules: require("./rules"),
|
||||
FlatESLint,
|
||||
FlatRuleTester,
|
||||
FileEnumerator
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue