7.0.2 (2024-06-21)
7.0.1 (2024-06-21)
7.0.0 (2024-05-01)
- eslint-config-love requires updated peer dependencies
- upgrade deps, replace eslint-config-standard-with-typescript with eslint-config-love (#218) (a83be5b), closes #217
6.0.2 (2024-05-01)
- use @typescript-eslint/no-unused-vars (#221) (9a95776), closes /github.com/standard/eslint-config-standard/blob/master/src/index.ts#L143
- Update .github/workflows/stale.yml [skip ci] (1f9ebc6)
6.0.1 (2024-01-19)
6.0.0 (2023-09-29)
- All interfaces now need to use method signature style rather than property function style
eg: before
interface Foo {
bar: (baz: number) => void
}
after
interface Foo {
bar(baz: number): void
}
5.0.1 (2023-07-26)
- bump eslint-config-standard-with-typescript from 36.1.1 to 37.0.0 (#179) (51d369c)
- dev: bump aegir from 39.0.13 to 40.0.0 (#178) (42155e8)
5.0.0 (2023-07-19)
- bump eslint-plugin-jsdoc from 43.2.0 to 46.4.4 (#176)
- restore linting (#148) (b222ba7)
- Update .github/workflows/stale.yml [skip ci] (b77e8e7)
- Update .github/workflows/stale.yml [skip ci] (fec2f8f)
- bump eslint-config-standard-with-typescript from 34.0.1 to 36.1.0 (#175) (2caff0a)
- bump eslint-plugin-jsdoc from 43.2.0 to 46.4.4 (#176) (4768f37)
4.0.3 (2023-05-11)
4.0.2 (2023-04-27)
4.0.1 (2023-04-27)
4.0.0 (2023-04-05)
await
is not allowed beforereturn
unless it is inside atry/catch
in which case it is required
Co-authored-by: Russell Dempsey 1173416+SgtPooki@users.noreply.github.com
- previously jsx and tsx files were not linted, now they are
- add import sorting rule (#126)