File tree Expand file tree Collapse file tree
packages/b2c-cli/src/commands/setup Expand file tree Collapse file tree Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments