noEmptyPattern
このコンテンツはまだ日本語訳がありません。
Diagnostic Category: lint/correctness/noEmptyPattern
Since: v1.0.0
Sources:
- Same as:
no-empty-pattern
Description
Section titled DescriptionDisallows empty destructuring patterns.
Examples
Section titled ExamplesInvalid
Section titled Invalidvar {} = foo;
code-block.js:1:5 lint/correctness/noEmptyPattern ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Unexpected empty object pattern.
> 1 │ var {} = foo;
│ ^^
2 │
var {a: {}} = foo;
code-block.js:1:9 lint/correctness/noEmptyPattern ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Unexpected empty object pattern.
> 1 │ var {a: {}} = foo;
│ ^^
2 │
function foo({}) {}
code-block.js:1:14 lint/correctness/noEmptyPattern ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Unexpected empty object pattern.
> 1 │ function foo({}) {}
│ ^^
2 │
Valid
Section titled ValidThe following cases are valid because they create new bindings.
var {a = {}} = foo;var {a, b = {}} = foo;var {a = []} = foo;function foo({a = {}}) {}function foo({a = []}) {}var [a] = foo;
How to configure
Section titled How to configure{ "linter": { "rules": { "correctness": { "noEmptyPattern": "error" } } }}