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 /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
src
[ DIR ]
dr-xr-xr-x
LICENSE
1.07
KB
-rw-rw-rw-
README.md
1.44
KB
-rw-rw-rw-
package.json
640
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
[](https://www.npmjs.com/package/@eslint/js) # ESLint JavaScript Plugin [Website](https://eslint.org) | [Configure ESLint](https://eslint.org/docs/latest/use/configure) | [Rules](https://eslint.org/docs/rules/) | [Contributing](https://eslint.org/docs/latest/contribute) | [Twitter](https://twitter.com/geteslint) | [Chatroom](https://eslint.org/chat) The beginnings of separating out JavaScript-specific functionality from ESLint. Right now, this plugin contains two configurations: * `recommended` - enables the rules recommended by the ESLint team (the replacement for `"eslint:recommended"`) * `all` - enables all ESLint rules (the replacement for `"eslint:all"`) ## Installation ```shell npm install @eslint/js -D ``` ## Usage Use in your `eslint.config.js` file anytime you want to extend one of the configs: ```js import js from "@eslint/js"; export default [ // apply recommended rules to JS files { files: ["**/*.js"], rules: js.configs.recommended.rules }, // apply recommended rules to JS files with an override { files: ["**/*.js"], rules: { ...js.configs.recommended.rules, "no-unused-vars": "warn" } }, // apply all rules to JS files { files: ["**/*.js"], rules: { ...js.configs.all.rules, "no-unused-vars": "warn" } } ] ``` ## License MIT
Close