Skip to content

Commit

Permalink
lint: sort exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Jul 15, 2022
1 parent b94b568 commit e4590ac
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/n4s/src/exports/compose.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ctx } from 'n4s';
import { invariant, StringObject, assign, mapFirst } from 'vest-utils';

import type { ComposeResult, LazyRuleRunners } from 'genEnforceLazy';
import { ctx } from 'n4s';
import { defaultToPassing, RuleDetailedResult } from 'ruleReturn';
import runLazyRule from 'runLazyRule';

Expand Down
2 changes: 1 addition & 1 deletion packages/n4s/src/exports/compounds.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { enforce } from 'n4s';
import { DropFirst } from 'utilityTypes';

import { allOf } from 'allOf';
import { anyOf } from 'anyOf';
import { enforce } from 'n4s';
import { noneOf } from 'noneOf';
import { oneOf } from 'oneOf';

Expand Down
2 changes: 1 addition & 1 deletion packages/n4s/src/exports/schema.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { enforce } from 'n4s';
import { DropFirst } from 'utilityTypes';

import { isArrayOf } from 'isArrayOf';
import { loose } from 'loose';
import { enforce } from 'n4s';
import { optional } from 'optional';
import { shape } from 'shape';

Expand Down
2 changes: 1 addition & 1 deletion packages/n4s/src/plugins/schema/isArrayOf.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ctx } from 'n4s';
import { mapFirst } from 'vest-utils';

import type { LazyRuleRunners } from 'genEnforceLazy';
import { ctx } from 'n4s';
import type { RuleDetailedResult } from 'ruleReturn';
import * as ruleReturn from 'ruleReturn';
import runLazyRule from 'runLazyRule';
Expand Down
1 change: 0 additions & 1 deletion packages/n4s/src/plugins/schema/loose.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ctx } from 'n4s';

import type { RuleDetailedResult } from 'ruleReturn';
import * as ruleReturn from 'ruleReturn';
import runLazyRule from 'runLazyRule';
Expand Down

1 comment on commit e4590ac

@vercel
Copy link

@vercel vercel bot commented on e4590ac Jul 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vest-next – ./website

vest-next-git-latest-ealush.vercel.app
vest-next.vercel.app
vest-next-ealush.vercel.app
vest-website.vercel.app

Please sign in to comment.