noInvalidUseBeforeDeclaration
此内容尚不支持你的语言。
Diagnostic Category: lint/correctness/noInvalidUseBeforeDeclaration
Since: v1.5.0
Sources:
- Same as:
no-use-before-define
- Same as:
@typescript-eslint/no-use-before-define
Disallow the use of variables and function parameters before their declaration
JavaScript doesn’t allow the use of block-scoped variables (let
, const
) and function parameters before their declaration.
A ReferenceError
will be thrown with any attempt to access the variable or the parameter before its declaration.
The rule also reports the use of variables declared with var
before their declarations.
Examples
Section titled ExamplesInvalid
Section titled Invalidcode-block.js:3:11 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Const declarations must have an initialized value.
1 │ function f() {
2 │ console.log(x);
> 3 │ const x;
│ ^
4 │ }
5 │
ℹ This variable needs to be initialized.
code-block.js:2:17 lint/correctness/noInvalidUseBeforeDeclaration ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This variable is used before its declaration.
1 │ function f() {
> 2 │ console.log(x);
│ ^
3 │ var x = 0;
4 │ }
ℹ The variable is declared here:
1 │ function f() {
2 │ console.log(x);
> 3 │ var x = 0;
│ ^
4 │ }
5 │
code-block.js:1:16 lint/correctness/noInvalidUseBeforeDeclaration ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This parameter is used before its declaration.
> 1 │ function f(a = b, b = 0) {}
│ ^
2 │
ℹ The parameter is declared here:
> 1 │ function f(a = b, b = 0) {}
│ ^
2 │