Skip to content

Commit 26c1d6c

Browse files
committed
Make pluginId more explicit for builtin global options
1 parent 1deda23 commit 26c1d6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

v-next/hardhat/src/internal/builtin-global-options.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const BUILTIN_GLOBAL_OPTIONS_DEFINITIONS: GlobalOptionDefinitions =
77
[
88
"config",
99
{
10-
pluginId: "hardhat",
10+
pluginId: "builtin",
1111
option: globalOption({
1212
name: "config",
1313
description: "A Hardhat config file.",
@@ -19,7 +19,7 @@ export const BUILTIN_GLOBAL_OPTIONS_DEFINITIONS: GlobalOptionDefinitions =
1919
[
2020
"help",
2121
{
22-
pluginId: "hardhat",
22+
pluginId: "builtin",
2323
option: globalOption({
2424
name: "help",
2525
description:
@@ -32,7 +32,7 @@ export const BUILTIN_GLOBAL_OPTIONS_DEFINITIONS: GlobalOptionDefinitions =
3232
[
3333
"showStackTraces",
3434
{
35-
pluginId: "hardhat",
35+
pluginId: "builtin",
3636
option: globalOption({
3737
name: "showStackTraces",
3838
description: "Show stack traces (always enabled on CI servers).",
@@ -44,7 +44,7 @@ export const BUILTIN_GLOBAL_OPTIONS_DEFINITIONS: GlobalOptionDefinitions =
4444
[
4545
"version",
4646
{
47-
pluginId: "hardhat",
47+
pluginId: "builtin",
4848
option: globalOption({
4949
name: "version",
5050
description: "Shows hardhat's version.",

0 commit comments

Comments
 (0)