We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fda776 commit cd7e3e7Copy full SHA for cd7e3e7
v-next/core/src/internal/parameters.ts
@@ -5,14 +5,10 @@ import { HardhatError } from "@ignored/hardhat-vnext-errors";
5
import { ParameterType } from "../types/common.js";
6
7
/**
8
- * Names that can't be used as global- nor task-parameter names.
+ * Names that can't be used as global- nor task-parameter names. These are
9
+ * reserved for future use.
10
*/
-export const RESERVED_PARAMETER_NAMES: Set<string> = new Set([
11
- "config",
12
- "help",
13
- "showStackTraces",
14
- "version",
15
-]);
+export const RESERVED_PARAMETER_NAMES: Set<string> = new Set([]);
16
17
const VALID_PARAM_NAME_CASING_REGEX = /^[a-z][a-zA-Z0-9]*$/;
18
0 commit comments