Skip to content

Commit 293448c

Browse files
committed
tmp
1 parent 15bd998 commit 293448c

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

cmd/generator/generator.go

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ var (
2323
verbose bool
2424
)
2525

26-
//exhaustruct:ignore
2726
type generatorDef struct {
2827
Name string
2928
Type string
@@ -87,7 +86,7 @@ var defaultTypes = []generatorDef{
8786
TestingValue: "12",
8887
AltTestingValue: "13",
8988
ZeroTestingValueOutput: zeroOutput[byte](),
90-
},
89+
}, //nolint:exhaustruct
9190
{
9291
Name: "int",
9392
Type: "int",
@@ -98,7 +97,7 @@ var defaultTypes = []generatorDef{
9897
TestingValue: "12",
9998
AltTestingValue: "13",
10099
ZeroTestingValueOutput: zeroOutput[int](),
101-
},
100+
}, //nolint:exhaustruct
102101
{
103102
Name: "int8",
104103
Type: "int8",
@@ -109,7 +108,7 @@ var defaultTypes = []generatorDef{
109108
TestingValue: "12",
110109
AltTestingValue: "13",
111110
ZeroTestingValueOutput: zeroOutput[int8](),
112-
},
111+
}, //nolint:exhaustruct
113112
{
114113
Name: "int16",
115114
Type: "int16",
@@ -120,7 +119,7 @@ var defaultTypes = []generatorDef{
120119
TestingValue: "12",
121120
AltTestingValue: "13",
122121
ZeroTestingValueOutput: zeroOutput[int16](),
123-
},
122+
}, //nolint:exhaustruct
124123
{
125124
Name: "int32",
126125
Type: "int32",
@@ -131,7 +130,7 @@ var defaultTypes = []generatorDef{
131130
TestingValue: "12",
132131
AltTestingValue: "13",
133132
ZeroTestingValueOutput: zeroOutput[int32](),
134-
},
133+
}, //nolint:exhaustruct
135134
{
136135
Name: "int64",
137136
Type: "int64",
@@ -142,7 +141,7 @@ var defaultTypes = []generatorDef{
142141
TestingValue: "12",
143142
AltTestingValue: "13",
144143
ZeroTestingValueOutput: zeroOutput[int64](),
145-
},
144+
}, //nolint:exhaustruct
146145
{
147146
Name: "uint",
148147
Type: "uint",
@@ -153,7 +152,7 @@ var defaultTypes = []generatorDef{
153152
TestingValue: "12",
154153
AltTestingValue: "13",
155154
ZeroTestingValueOutput: zeroOutput[uint](),
156-
},
155+
}, //nolint:exhaustruct
157156
{
158157
Name: "uint8",
159158
Type: "uint8",
@@ -164,7 +163,7 @@ var defaultTypes = []generatorDef{
164163
TestingValue: "12",
165164
AltTestingValue: "13",
166165
ZeroTestingValueOutput: zeroOutput[uint8](),
167-
},
166+
}, //nolint:exhaustruct
168167
{
169168
Name: "uint16",
170169
Type: "uint16",
@@ -175,7 +174,7 @@ var defaultTypes = []generatorDef{
175174
TestingValue: "12",
176175
AltTestingValue: "13",
177176
ZeroTestingValueOutput: zeroOutput[uint16](),
178-
},
177+
}, //nolint:exhaustruct
179178
{
180179
Name: "uint32",
181180
Type: "uint32",
@@ -186,7 +185,7 @@ var defaultTypes = []generatorDef{
186185
TestingValue: "12",
187186
AltTestingValue: "13",
188187
ZeroTestingValueOutput: zeroOutput[uint32](),
189-
},
188+
}, //nolint:exhaustruct
190189
{
191190
Name: "uint64",
192191
Type: "uint64",
@@ -197,7 +196,7 @@ var defaultTypes = []generatorDef{
197196
TestingValue: "12",
198197
AltTestingValue: "13",
199198
ZeroTestingValueOutput: zeroOutput[uint64](),
200-
},
199+
}, //nolint:exhaustruct
201200
{
202201
Name: "float32",
203202
Type: "float32",
@@ -208,7 +207,7 @@ var defaultTypes = []generatorDef{
208207
TestingValue: "12",
209208
AltTestingValue: "13",
210209
ZeroTestingValueOutput: zeroOutput[float32](),
211-
},
210+
}, //nolint:exhaustruct
212211
{
213212
Name: "float64",
214213
Type: "float64",
@@ -219,7 +218,7 @@ var defaultTypes = []generatorDef{
219218
TestingValue: "12",
220219
AltTestingValue: "13",
221220
ZeroTestingValueOutput: zeroOutput[float64](),
222-
},
221+
}, //nolint:exhaustruct
223222
{
224223
Name: "string",
225224
Type: "string",

0 commit comments

Comments
 (0)