npm @angular-eslint/eslint-plugin 19.0.2
v19.0.2

latest release: 19.0.3-alpha.0
4 days ago

19.0.2 (2024-12-10)

🩹 Fixes

  • update typescript-eslint packages to v8.18.0 (#2171)
  • eslint-plugin: [prefer-standalone] error range should only include property and value (#2172)

NOTE: If you had previously suppressed errors for prefer-standalone using an eslint-disable comment, you will need to move them to above the property in light of the above bug fix, we are sorry for any inconvenience.

E.g. In 19.0.0 and 19.0.1

// eslint-disable-next-line
@Pipe({
  standalone: false,
  name: 'pipe-name'
})
class Test {}

In 19.0.2 and onwards:

@Pipe({
  // eslint-disable-next-line
  standalone: false,
  name: 'pipe-name'
})
class Test {}

❤️ Thank You

Don't miss a new eslint-plugin release

NewReleases is sending notifications on new releases.