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
- James Henry @JamesHenry