-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
152 lines (150 loc) · 2.85 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// https://www.annuityexpertadvice.com/states-that-dont-tax-retirement-income
const DATA = [
{
id: 'ss',
name: 'Social Security',
states: [
{name: 'CO'},
{name: 'CA'},
{name: 'CT', note: '50%'},
{name: 'FL'},
{name: 'KS'},
{name: 'MN', note: '33%'},
{name: 'MO', note: 'prorated'},
{name: 'MT'},
{name: 'NJ'},
{name: 'RI', note: 'prorated'},
{name: 'VT'},
{name: 'WV'},
],
},
{
id: 'pension',
name: 'Pension',
states: [
{name: 'AK'},
{name: 'AL'},
{name: 'FL'},
{name: 'HI'},
{name: 'IL'},
{name: 'MS'},
{name: 'NH'},
{name: 'NV'},
{name: 'PA'},
{name: 'SD'},
{name: 'TN'},
{name: 'TX'},
{name: 'WA'},
{name: 'WY'},
],
},
{
id: 'tsp',
name: 'TSP',
states: [
{name: 'AK'},
{name: 'FL'},
{name: 'IL'},
{name: 'NV'},
{name: 'NH'},
{name: 'MS'},
{name: 'PA'},
{name: 'SD'},
{name: 'TN'},
{name: 'TX'},
{name: 'WA'},
{name: 'WY'},
],
},
{
id: '401k',
name: '401(k)',
states: [
{name: 'AK'},
{name: 'IL'},
{name: 'NV'},
{name: 'NH'},
{name: 'PA'},
{name: 'SD'},
{name: 'TN'},
],
},
{
id: 'income',
name: 'Income Tax',
states: [
{name: 'AK'},
{name: 'FL'},
{name: 'NV'},
{name: 'NH'},
{name: 'SD'},
{name: 'TN'},
{name: 'TX'},
{name: 'WA'},
{name: 'WY'},
],
},
{
id: 'sales',
name: 'Sales Tax',
states: [
{name: 'AK'},
{name: 'DE'},
{name: 'MT'},
{name: 'NH'},
{name: 'OR'},
],
},
{
id: 'inheritance',
name: 'Inheritance',
states: [
{name: 'AK'},
{name: 'AL'},
{name: 'AR'},
{name: 'AZ'},
{name: 'CA'},
{name: 'CO'},
{name: 'DE'},
{name: 'FL'},
{name: 'GA'},
{name: 'IA'},
{name: 'ID'},
{name: 'IN'},
{name: 'KS'},
{name: 'KY', note: 'Estate Tax Only'},
{name: 'LA', note: 'Inheritance Tax only'},
{
name: 'MD',
note: 'Taxes can be an exemption if requirements are met',
},
{name: 'MI'},
{name: 'MO'},
{name: 'MS'},
{name: 'MT'},
{name: 'NC'},
{name: 'ND'},
{name: 'NE', note: 'Estate Tax Only'},
{name: 'NH'},
{name: 'NJ', note: 'Estate Tax Only'},
{name: 'NM'},
{name: 'NV'},
{name: 'OH'},
{name: 'OK'},
{
name: 'PA',
note: 'No Estate Tax. No Inheritance Tax Depending On Beneficiary',
},
{name: 'SC'},
{name: 'SD'},
{name: 'TN'},
{name: 'TX'},
{name: 'UT'},
{name: 'VA'},
{name: 'WV'},
{name: 'WI'},
{name: 'WY'},
],
},
];
export default DATA;