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 /
[ HOME SHELL ]
Name
Size
Permission
Action
cli-engine
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
eslint
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
linter
[ DIR ]
drwxr-xr-x
rule-tester
[ DIR ]
drwxr-xr-x
rules
[ DIR ]
drwxr-xr-x
services
[ DIR ]
drwxr-xr-x
shared
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
api.js
1.57
KB
-rw-r--r--
cli.js
19.65
KB
-rw-r--r--
config-api.js
225
B
-rw-r--r--
options.js
13.78
KB
-rw-r--r--
universal.js
181
B
-rw-r--r--
unsupported-api.js
910
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : api.js
/** * @fileoverview Expose out ESLint and CLI to require. * @author Ian Christian Myers */ "use strict"; //----------------------------------------------------------------------------- // Requirements //----------------------------------------------------------------------------- const { ESLint, shouldUseFlatConfig } = require("./eslint/eslint"); const { LegacyESLint } = require("./eslint/legacy-eslint"); const { Linter } = require("./linter"); const { RuleTester } = require("./rule-tester"); const { SourceCode } = require("./languages/js/source-code"); //----------------------------------------------------------------------------- // Functions //----------------------------------------------------------------------------- /** * Loads the correct ESLint constructor given the options. * @param {Object} [options] The options object * @param {boolean} [options.useFlatConfig] Whether or not to use a flat config * @returns {Promise<ESLint|LegacyESLint>} The ESLint constructor */ async function loadESLint({ useFlatConfig } = {}) { /* * Note: The v8.x version of this function also accepted a `cwd` option, but * it is not used in this implementation so we silently ignore it. */ const shouldESLintUseFlatConfig = useFlatConfig ?? (await shouldUseFlatConfig()); return shouldESLintUseFlatConfig ? ESLint : LegacyESLint; } //----------------------------------------------------------------------------- // Exports //----------------------------------------------------------------------------- module.exports = { Linter, loadESLint, ESLint, RuleTester, SourceCode, };
Close