Exclude MFS filers and apply MO investment income limit to WFTC - #9180
Exclude MFS filers and apply MO investment income limit to WFTC#9180hua7450 wants to merge 4 commits into
Conversation
Missouri's Working Families Tax Credit (RSMo 143.177) is limited to filing statuses of single, head of household, widowed, or married filing combined, and to filers whose investment income does not exceed a Missouri-specific limit reflecting IRC Section 32(i) as of January 1, 2021 ($4,050 in 2023, $4,300 in 2024, $4,400 in 2025, per Form MO-WFTC). Neither condition was modeled, so MFS filers and filers over the Missouri investment income limit received the credit whenever the federal EITC paid them. Fixes #9177 Fixes #9178 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #9180 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 3 2 -1
Lines 63 31 -32
Branches 3 0 -3
=========================================
- Hits 63 31 -32
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
…exclusion The 2024 and 2025 Form MO-WFTC checklists stop filers claimed as a dependent on another return; model this with a dated boolean parameter and the existing head_is_dependent_elsewhere variable (the 2023 form has no such stop). Also require a federal EITC in mo_wftc_eligible so the variable reflects full WFTC eligibility per RSMo 143.177.2 and Form MO-WFTC Line 1 rather than only the Missouri-specific conditions. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Program ReviewSource Documents
Branch StatusBranch is 2 commits ahead, 3 behind Critical (Must Fix)None.
Should Address
Suggestions
Verified correct (no action needed)
PDF Audit Summary
Unmodeled items (noted, not findings — all either administrative filing mechanics skipped by convention or pre-existing behavior unchanged by this PR): (1) qualifying-child name/SSN/DOB reporting requirement (present on all three forms' instructions, not just 2025); (2) Missouri's exact Form-1040-line investment-income definition (approximated with the federal EITC measure, disclosed in a code comment); (3) the "EIC law as of January 1, 2021" credit base (pre-existing Validation Summary
Review Severity: COMMENTNo critical issues. The consolidated should-address items are non-blocking: one documented boundary-semantics judgment call for maintainers to confirm, three test-coverage gaps for already-tested variables, and parameter metadata style conventions. Next StepsTo auto-fix issues: Automated review generated by /review-program (read-only). |
- Note the 2023 form's Line 3 instructions (not just its checklist) use "equal to or greater than" wording; keep the strict statutory reading. - Add positive eligibility tests for head of household, married filing combined, and widowed filers. - Add the 2025 at-limit investment income case. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…into fix-mo-wftc-eligibility
Summary
Adds the two missing eligibility conditions to the Missouri Working Families Tax Credit (RSMo 143.177):
Fixes #9177
Fixes #9178
Changes
gov/states/mo/tax/income/credits/wftc/investment_income_limit.yaml— values from Form MO-WFTC with a comment documenting the derivation chain (the statute contains no dollar amount) and why there is nouprating(no federal source; each year's value comes from the new form).gov/states/mo/tax/income/credits/wftc/dependent_filers_excluded.yaml— the claimed-as-a-dependent stop first appears on the 2024 form checklist (false in 2023, true from 2024).mo_wftc_eligible— requires a federal EITC (eitc > 0, per RSMo 143.177.2 "allowed a federal earned income tax credit" and Form MO-WFTC Line 1), filing status is not SEPARATE, the filer is not claimed as a dependent on another return (from 2024, viahead_is_dependent_elsewhere), and investment income does not exceed the Missouri limit.mo_wftc_potentialmultiplies by the new eligibility. The contrib refundable-WFTC reform builds onmo_wftc_potential, so the eligibility conditions flow through to the reform as well.Modeling decisions
eitc_relevant_investment_income. Missouri's form definition (taxable + tax-exempt interest, ordinary dividends, positive capital gain net income, with a Pub 596 Worksheet 1 fallback) is close but not identical (the federal measure also nets rental/passive income); documented in the variable.head_is_dependent_elsewhere(following theva_low_income_tax_credit_eligibleprecedent). An earlier revision of this PR incorrectly stated this was not representable;claimed_as_dependent_on_another_returnexists as a person-level input for exactly this case.Test plan
mo_wftc_eligible.yamlunit tests: no federal EITC ineligible; MFS ineligible; eligible baseline plus positive cases for all allowed statuses (single, head of household, married filing combined, widowed); claimed dependent eligible in 2023 but ineligible from 2024; boundary cases at and above the limit for 2023, 2024, and 2025 (including $4,401 in 2025 — below federal, above Missouri).mo_wftc.yaml: MFS filer, over-limit investment income, and a claimed dependent (2025) all producemo_wftc: 0.🤖 Generated with Claude Code