Skip to content

1.14.0

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Mar 03:52
· 100 commits to master since this release

Added

  • RedundantJump analysis rule, which flags redundant jump statements, e.g., Continue, Exit.
  • LoopExecutingAtMostOnce analysis rule, which flags loop statements that can execute at most once.
  • excludedNames rule property to the MixedNames rule.
  • API: RepeatStatementNode::getGuardExpression method.
  • API: RepeatStatementNode::getStatementList method.
  • API: CaseStatementNode::getSelectorExpression method.
  • API: CaseItemStatementNode::getStatement method.

Fixed

  • Parsing errors where adjacent > and = tokens were wrongly interpreted as the >= operator.
  • False-positives within assignment statements in IndexLastListElement.