@@ -5,11 +5,8 @@ import type {
5
5
} from "../types/hooks.js" ;
6
6
import type { HardhatPlugin } from "../types/plugins.js" ;
7
7
8
- import {
9
- isOptionDefinition ,
10
- isPositionalArgumentDefinition ,
11
- isTaskDefinition ,
12
- } from "../type-guards.js" ;
8
+ import { isObject } from "@ignored/hardhat-vnext-utils/lang" ;
9
+
13
10
import {
14
11
ArgumentType ,
15
12
type OptionDefinition ,
@@ -23,6 +20,64 @@ import {
23
20
type TaskOverrideDefinition ,
24
21
} from "../types/tasks.js" ;
25
22
23
+ function isValidEnumValue (
24
+ theEnum : Record < string , string > ,
25
+ value : string ,
26
+ ) : boolean {
27
+ // Enums are objects that have entries that map:
28
+ // 1) keys to values
29
+ // 2) values to keys
30
+ const key = theEnum [ value ] ;
31
+ if ( key === undefined ) {
32
+ return false ;
33
+ }
34
+
35
+ return theEnum [ key ] === value ;
36
+ }
37
+
38
+ /**
39
+ * Returns true if `potential` is a `TaskDefinition`.
40
+ */
41
+ function isTaskDefinition ( potential : unknown ) : potential is TaskDefinition {
42
+ return (
43
+ typeof potential === "object" &&
44
+ potential !== null &&
45
+ "type" in potential &&
46
+ typeof potential . type === "string" &&
47
+ isValidEnumValue ( TaskDefinitionType , potential . type )
48
+ ) ;
49
+ }
50
+
51
+ /**
52
+ * Returns true if `potential` is a `OptionDefinition`.
53
+ */
54
+ function isOptionDefinition ( potential : unknown ) : potential is OptionDefinition {
55
+ return (
56
+ typeof potential === "object" &&
57
+ potential !== null &&
58
+ "type" in potential &&
59
+ typeof potential . type === "string" &&
60
+ isValidEnumValue ( ArgumentType , potential . type ) &&
61
+ ! ( "isVariadic" in potential )
62
+ ) ;
63
+ }
64
+
65
+ /**
66
+ * Returns true if `potential` is a `PositionalArgumentDefinition`.
67
+ */
68
+ function isPositionalArgumentDefinition (
69
+ potential : unknown ,
70
+ ) : potential is PositionalArgumentDefinition {
71
+ return (
72
+ typeof potential === "object" &&
73
+ potential !== null &&
74
+ "type" in potential &&
75
+ typeof potential . type === "string" &&
76
+ isValidEnumValue ( ArgumentType , potential . type ) &&
77
+ "isVariadic" in potential
78
+ ) ;
79
+ }
80
+
26
81
export async function validateUserConfig (
27
82
hooks : HookManager ,
28
83
config : HardhatUserConfig ,
@@ -166,7 +221,7 @@ export function validateNewTask(
166
221
} ) ;
167
222
}
168
223
169
- if ( typeof task . options === "object" && task . options !== null ) {
224
+ if ( isObject ( task . options ) ) {
170
225
validationErrors . push (
171
226
...validateOptions ( task . options , [ ...path , "options" ] ) ,
172
227
) ;
@@ -221,7 +276,7 @@ export function validateTaskOverride(
221
276
} ) ;
222
277
}
223
278
224
- if ( typeof task . options === "object" && task . options !== null ) {
279
+ if ( isObject ( task . options ) ) {
225
280
validationErrors . push (
226
281
...validateOptions ( task . options , [ ...path , "options" ] ) ,
227
282
) ;
@@ -348,10 +403,9 @@ export function validatePositionalArguments(
348
403
case ArgumentType . STRING :
349
404
case ArgumentType . FILE : {
350
405
if (
351
- ( typeof arg . defaultValue !== "string" &&
352
- ! Array . isArray ( arg . defaultValue ) ) ||
353
- ( Array . isArray ( arg . defaultValue ) &&
354
- ! arg . defaultValue . every ( ( v ) => typeof v === "string" ) )
406
+ typeof arg . defaultValue !== "string" &&
407
+ ( ! Array . isArray ( arg . defaultValue ) ||
408
+ arg . defaultValue . some ( ( v ) => typeof v !== "string" ) )
355
409
) {
356
410
validationErrors . push ( {
357
411
path : [ ...path , "positionalArguments" , index , "defaultValue" ] ,
@@ -364,10 +418,9 @@ export function validatePositionalArguments(
364
418
}
365
419
case ArgumentType . BOOLEAN : {
366
420
if (
367
- ( typeof arg . defaultValue !== "boolean" &&
368
- ! Array . isArray ( arg . defaultValue ) ) ||
369
- ( Array . isArray ( arg . defaultValue ) &&
370
- ! arg . defaultValue . every ( ( v ) => typeof v === "boolean" ) )
421
+ typeof arg . defaultValue !== "boolean" &&
422
+ ( ! Array . isArray ( arg . defaultValue ) ||
423
+ arg . defaultValue . some ( ( v ) => typeof v !== "boolean" ) )
371
424
) {
372
425
validationErrors . push ( {
373
426
path : [ ...path , "positionalArguments" , index , "defaultValue" ] ,
@@ -381,10 +434,9 @@ export function validatePositionalArguments(
381
434
case ArgumentType . INT :
382
435
case ArgumentType . FLOAT : {
383
436
if (
384
- ( typeof arg . defaultValue !== "number" &&
385
- ! Array . isArray ( arg . defaultValue ) ) ||
386
- ( Array . isArray ( arg . defaultValue ) &&
387
- ! arg . defaultValue . every ( ( v ) => typeof v === "number" ) )
437
+ typeof arg . defaultValue !== "number" &&
438
+ ( ! Array . isArray ( arg . defaultValue ) ||
439
+ arg . defaultValue . some ( ( v ) => typeof v !== "number" ) )
388
440
) {
389
441
validationErrors . push ( {
390
442
path : [ ...path , "positionalArguments" , index , "defaultValue" ] ,
@@ -397,10 +449,9 @@ export function validatePositionalArguments(
397
449
}
398
450
case ArgumentType . BIGINT : {
399
451
if (
400
- ( typeof arg . defaultValue !== "bigint" &&
401
- ! Array . isArray ( arg . defaultValue ) ) ||
402
- ( Array . isArray ( arg . defaultValue ) &&
403
- ! arg . defaultValue . every ( ( v ) => typeof v === "bigint" ) )
452
+ typeof arg . defaultValue !== "bigint" &&
453
+ ( ! Array . isArray ( arg . defaultValue ) ||
454
+ arg . defaultValue . some ( ( v ) => typeof v !== "bigint" ) )
404
455
) {
405
456
validationErrors . push ( {
406
457
path : [ ...path , "positionalArguments" , index , "defaultValue" ] ,
0 commit comments