Skip to content

Commit

Permalink
Automatic imports ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
Cool-Katt committed Jun 18, 2024
1 parent 8e0487f commit a57070e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions exercises/practice/lens-person/.meta/proof.ci.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* eslint-disable no-unused-vars */
import { Person } from '../person';
import { Name } from '../name';
import { Born } from '../born';
import { Address } from '../address';
import { Born } from '../born';
import { Lens } from '../lens';
import { Name } from '../name';
import { Person } from '../person';

// Implement the nameLens with the getter and setter
export const nameLens = new Lens(
Expand Down
7 changes: 3 additions & 4 deletions exercises/practice/lens-person/lens-person.spec.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Person } from './person';
import { Name } from './name';
import { Address } from './address';
import { Born } from './born';
import { Name } from './name';
import { Person } from './person';

// import { nameLens, bornAtLens, streetLens } from './.meta/proof.ci';
import { nameLens, bornAtLens, streetLens } from './lens-person';
import { bornAtLens, nameLens, streetLens } from './lens-person';

// test data
const person = new Person(
Expand Down

0 comments on commit a57070e

Please sign in to comment.