this repo has no description
0
fork

Configure Feed

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

move eslint disables

+2 -3
-3
eslint.config.js
··· 11 11 xo.xoToEslintConfig([ 12 12 { 13 13 prettier: 'compat', 14 - rules: { 15 - 'no-await-in-loop': 'off', 16 - }, 17 14 }, 18 15 ]), 19 16 ],
+1
source/cli/actions/config/set.js
··· 11 11 const newProfiles = {}; 12 12 13 13 for (const mode of modes) { 14 + // eslint-disable-next-line no-await-in-loop 14 15 const selectedProfile = await consola.prompt( 15 16 `Select ${mode} mode profile`, 16 17 {
+1
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 9 10 command.addCommand(await setMode(mode)); 10 11 } 11 12