Skip to content

Commit 43f653c

Browse files
committed
lint issue
1 parent 6ce8b05 commit 43f653c

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ export const oclifRules = {
5252
'perfectionist/sort-interfaces': 'off',
5353
'perfectionist/sort-named-exports': 'off',
5454
'perfectionist/sort-named-imports': 'off',
55+
'perfectionist/sort-classes': 'warn',
5556
// Disable stylistic rules that conflict with our style
5657
'@stylistic/lines-between-class-members': 'off',
5758
'@stylistic/padding-line-between-statements': 'off',

packages/b2c-cli/src/commands/setup/inspect.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ export default class SetupInspect extends BaseCommand<typeof SetupInspect> {
7171

7272
static description = withDocs('Display resolved configuration', '/cli/setup.html#b2c-setup-inspect');
7373

74-
static hiddenAliases = ['config:show', 'config:inspect'];
75-
7674
static enableJsonFlag = true;
7775

7876
static examples = [
@@ -89,6 +87,8 @@ export default class SetupInspect extends BaseCommand<typeof SetupInspect> {
8987
}),
9088
};
9189

90+
static hiddenAliases = ['config:show', 'config:inspect'];
91+
9292
protected override loadConfiguration(): ResolvedB2CConfig {
9393
// Include EnvSource so that SFCC_* environment variables are visible in inspect output.
9494
// Other commands handle env vars via oclif flag mappings, but inspect needs to show them

0 commit comments

Comments
 (0)