Halfway done

This commit is contained in:
2024-10-19 22:45:27 +01:00
parent 47f56cd473
commit f2e9d5844b
10632 changed files with 1720635 additions and 0 deletions

27
node_modules/eslint/lib/shared/flags.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
/**
* @fileoverview Shared flags for ESLint.
*/
"use strict";
/**
* The set of flags that change ESLint behavior with a description.
* @type {Map<string, string>}
*/
const activeFlags = new Map([
["test_only", "Used only for testing."],
["unstable_ts_config", "Enable TypeScript configuration files."]
]);
/**
* The set of flags that used to be active but no longer have an effect.
* @type {Map<string, string>}
*/
const inactiveFlags = new Map([
["test_only_old", "Used only for testing."]
]);
module.exports = {
activeFlags,
inactiveFlags
};