Skip to content

Commit

Permalink
lint: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Jun 15, 2022
1 parent dc9e214 commit 3bf8aa5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ module.exports = {
'import/no-unresolved': [2],
'import/no-useless-path-segments': 2,
'import/order': [
'error',
'warn',
{
alphabetize: {
order: 'asc',
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
1 change: 1 addition & 0 deletions packages/n4s/src/plugins/schema/loose.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ctx } from 'n4s';

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

1 comment on commit 3bf8aa5

@vercel
Copy link

@vercel vercel bot commented on 3bf8aa5 Jun 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-website.vercel.app
vest-next-ealush.vercel.app

Please sign in to comment.