Skip to content

Commit d8f2430

Browse files
committed
refactor(stepper): fix lint issues
1 parent 1ccec2b commit d8f2430

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/cdk/stepper/stepper.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,8 @@ export class CdkStepper implements AfterViewInit, OnDestroy {
386386
private _getGuidelineLogic(
387387
step: CdkStep,
388388
isCurrentStep: boolean,
389-
state: StepState = STEP_STATE.NUMBER): StepState {
389+
state: StepState = STEP_STATE.NUMBER
390+
): StepState {
390391
if (step._showError && step.hasError && !isCurrentStep) {
391392
return STEP_STATE.ERROR;
392393
} else if (step.completed && !isCurrentStep) {

src/lib/stepper/stepper.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
*/
88

99
import {Directionality} from '@angular/cdk/bidi';
10-
import {CdkStep, CdkStepper, StepContentPositionState, MAT_STEPPER_GLOBAL_OPTIONS, StepperOptions} from '@angular/cdk/stepper';
10+
import {
11+
CdkStep,
12+
CdkStepper,
13+
StepContentPositionState,
14+
MAT_STEPPER_GLOBAL_OPTIONS,
15+
StepperOptions
16+
} from '@angular/cdk/stepper';
1117
import {AnimationEvent} from '@angular/animations';
1218
import {
1319
AfterContentInit,

0 commit comments

Comments
 (0)