forked from public/fvtt-cthulhu-eternal
Initial import with skill sheet working
This commit is contained in:
28
node_modules/eslint/lib/shared/flags.js
generated
vendored
Normal file
28
node_modules/eslint/lib/shared/flags.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* @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_config_lookup_from_file", "Look up eslint.config.js from the file being linted."],
|
||||
["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
|
||||
};
|
||||
Reference in New Issue
Block a user