this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove async

+2 -3
+1 -1
source/cli/commands/config/set-mode.js
··· 7 7 * 8 8 * @param {'dark' | 'light'} mode 9 9 */ 10 - export default async function setMode(mode) { 10 + export default function setMode(mode) { 11 11 return new Command(mode) 12 12 .description(`set terminal profile for ${mode}`) 13 13 .addArgument(
+1 -2
source/cli/commands/config/set.js
··· 6 6 const command = new Command('set').description('update configuration'); 7 7 8 8 for (const mode of modes) { 9 - // eslint-disable-next-line no-await-in-loop 10 - command.addCommand(await setMode(mode)); 9 + command.addCommand(setMode(mode)); 11 10 } 12 11 13 12 command.action(actions.config.set);