Skip to content

Commit

Permalink
Y2023 support (#2006)
Browse files Browse the repository at this point in the history
* Add some support for Y2023

Form 1040, Schedule 1, Schedule 2, Schedule 3, Schedule 8812, Schedule
A, Schedule B, and Schedule D have been updated.

* Remove line 8d reference from Schedule A

* Prettify

* Update test cases for 2023 tax year.

Remove code for IL and OR, since I haven't updated those for 2023.

* Minor updates to Schedules E, EIC, and SE, and to Form 6251

Signed-off-by: Saikrishna Arcot <[email protected]>

* Minor change to Form 8889

Signed-off-by: Saikrishna Arcot <[email protected]>

* Always use current tax year when determining if a 8949 should be created

Signed-off-by: Saikrishna Arcot <[email protected]>

* Fix Form 8960 generation to be based on the MAGI, not just W-2

Fixes #1113

Signed-off-by: Saikrishna Arcot <[email protected]>

* Fix Schedule A formatting

There is technically a field in Schedule A line 8d, and that needs to be
kept empty.

Signed-off-by: Saikrishna Arcot <[email protected]>

---------

Signed-off-by: Saikrishna Arcot <[email protected]>
  • Loading branch information
saiarcot895 authored Apr 7, 2024
1 parent 69a6724 commit 1661e39
Show file tree
Hide file tree
Showing 141 changed files with 9,294 additions and 3 deletions.
Binary file added public/forms/Y2023/irs/f1040.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040s1.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040s2.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040s3.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040s8.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040sa.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040sb.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040sd.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040se.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040sei.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040sse.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f1040v.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f6251.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f8889.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f8949.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f8959.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f8960.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f8995.pdf
Binary file not shown.
Binary file added public/forms/Y2023/irs/f8995a.pdf
Binary file not shown.
3 changes: 2 additions & 1 deletion src/core/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ export enum TaxYears {
Y2019 = 2019,
Y2020 = 2020,
Y2021 = 2021,
Y2022 = 2022
Y2022 = 2022,
Y2023 = 2023
}

export type TaxYear = keyof typeof TaxYears
Expand Down
Loading

0 comments on commit 1661e39

Please sign in to comment.