noUnreachable
このコンテンツはまだ日本語訳がありません。
Diagnostic Category: lint/correctness/noUnreachable
Since: v1.0.0
Sources:
- Same as:
no-unreachable
Disallow unreachable code
Examples
Section titled ExamplesInvalid
Section titled Invalidcode-block.js:3:5 lint/correctness/noUnreachable ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This code will never be reached …
1 │ function example() {
2 │ return;
> 3 │ neverCalled();
│ ^^^^^^^^^^^^^^
4 │ }
5 │
ℹ … because this statement will return from the function beforehand
1 │ function example() {
> 2 │ return;
│ ^^^^^^^
3 │ neverCalled();
4 │ }
code-block.js:2:28 lint/correctness/noUnreachable ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This code will never be reached …
1 │ function example() {
> 2 │ for(let i = 0; i < 10; ++i) {
│ ^^^
3 │ break;
4 │ }
ℹ … because this statement will break the flow of the code beforehand
1 │ function example() {
2 │ for(let i = 0; i < 10; ++i) {
> 3 │ break;
│ ^^^^^^
4 │ }
5 │ }
code-block.js:4:9 lint/correctness/noUnreachable ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ This code will never be reached …
2 │ for(const key in value) {
3 │ continue;
> 4 │ neverCalled();
│ ^^^^^^^^^^^^^^
5 │ }
6 │ }
ℹ … because this statement will continue the loop beforehand
1 │ function example() {
2 │ for(const key in value) {
> 3 │ continue;
│ ^^^^^^^^^
4 │ neverCalled();
5 │ }