question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

no-fallthrough: Don’t warn when falling through case statements with no bodies

See original GitHub issue

Tell us about your environment

  • ESLint Version: v4.4.0
  • Node Version: v7.9.0
  • npm Version: 5.3.0

The broken code

switch (file.status) {
  case AppFileStatus.New:
    return formatPatchHeader(null, file.path)

  case AppFileStatus.Conflicted:
  // One might initially believe that renamed files should diff
  // against their old path. This is, after all, how git diff
  // does it right after a rename. But if we're creating a patch
  // to be applied along with a rename we must target the renamed
  // file.
  case AppFileStatus.Renamed: // *** Expected a 'break' statement before 'case'  no-fallthrough
  case AppFileStatus.Deleted:
  case AppFileStatus.Modified:
  case AppFileStatus.Copied:
    return formatPatchHeader(file.path, file.path)
}

This appears to be because of the comments between AppFileStatus.Conflicted and AppFileStatus.Renamed. If I remove the comments, it works as intended.

Minimal repro:

switch (1) {
  case 1:
  // comment
  case 2:
    break
}

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:1
  • Comments:5 (5 by maintainers)

github_iconTop GitHub Comments

3reactions
j-f1commented, Aug 12, 2017

Can this become a request to add an option to only report when there’s actually code in the case @not-an-aardvark?

0reactions
not-an-aardvarkcommented, Mar 5, 2018

Thanks for your interest in improving ESLint. Unfortunately, it looks like this issue didn’t get consensus from the team, so I’m closing it. We define consensus as having three 👍s from team members, as well as a team member willing to champion the proposal. This is a high bar by design – we can’t realistically accept and maintain every feature request in the long term, so we only accept feature requests which are useful enough that there is consensus among the team that they’re worth adding.

Since ESLint is pluggable and can load custom rules at runtime, the lack of consensus among the ESLint team doesn’t need to be a blocker for you using this in your project, if you’d find it useful. It just means that you would need to implement the rule yourself, rather than using a bundled rule that is packaged with ESLint.

Read more comments on GitHub >

github_iconTop Results From Across the Web

no-fallthrough - ESLint - Pluggable JavaScript Linter
A pluggable and configurable linter tool for identifying and reporting on patterns in JavaScript. Maintain your code quality with ease.
Read more >
An end to implicit fall-throughs in the kernel - LWN.net
The GCC compiler has, for some time, offered a warning option (-Wimplicit-fallthrough) intended to catch missing break statements. It will trigger for any...
Read more >
noFallthroughCasesInSwitch - explicitly allow fall through
I've enabled the noFallthroughCasesInSwitch option in the tsconfig.json file. That option warned me ...
Read more >
245257 – [compiler] Allow to suppress fall-through warning
The question is then what comments are counted as "valid fallthrough". In the "undocumented empty block" case, this is easy, but here, we...
Read more >
Need something alternative to switch · Issue #307 · dart-lang ...
We could make switch an expression level feature too, where the case bodies must then be expressions (and with NNBD you must have...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found