Skip to content

Commit

Permalink
Remove redundant blank lines in config.ts.
Browse files Browse the repository at this point in the history
  • Loading branch information
junhaoliao committed Nov 28, 2024
1 parent 0a442f5 commit 25e245c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ const testConfig = ({key, value}: ConfigUpdate): Nullable<string> => {
break;
case CONFIG_KEY.THEME:
throw new Error(`"${key}" cannot be managed using these utilities.`);

/* c8 ignore next */
default: break;
}
Expand Down Expand Up @@ -108,7 +107,6 @@ const setConfig = ({key, value}: ConfigUpdate): Nullable<string> => {
case CONFIG_KEY.THEME:
// Unexpected execution path.
break;

/* c8 ignore end */
/* c8 ignore next */
default: break;
Expand Down Expand Up @@ -150,7 +148,6 @@ const getConfig = <T extends CONFIG_KEY>(key: T): ConfigMap[T] => {
break;
case CONFIG_KEY.THEME:
throw new Error(`"${key}" cannot be managed using these utilities.`);

/* c8 ignore next */
default: break;
}
Expand Down

0 comments on commit 25e245c

Please sign in to comment.