Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TuvalSimha committed Jul 11, 2023
1 parent 8ec6ce4 commit 97c898d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/diff/rules/consider-usage.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parsePath } from '../../utils/path.js';
import { CriticalityLevel } from './../changes/change.js';
import { CriticalityLevel } from "../changes/change.js";
import { Rule } from './types.js';

export type UsageHandler = (
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/diff/rules/dangerous-breaking.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CriticalityLevel } from './../changes/change.js';
import { CriticalityLevel } from "../changes/change.js";
import { Rule } from './types.js';

export const dangerousBreaking: Rule = ({ changes }) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/diff/rules/safe-unreachable.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getReachableTypes } from '../../utils/graphql.js';
import { parsePath } from '../../utils/path.js';
import { CriticalityLevel } from './../changes/change.js';
import { CriticalityLevel } from "../changes/change.js";
import { Rule } from './types.js';

export const safeUnreachable: Rule = ({ changes, oldSchema }) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { isEnumType, isInputObjectType, isInterfaceType, isObjectType } from 'graphql';
import { isDeprecated } from '../../utils/is-deprecated.js';
import { parsePath } from '../../utils/path.js';
import { ChangeType, CriticalityLevel } from './../changes/change.js';
import { ChangeType, CriticalityLevel } from "../changes/change.js";
import { Rule } from './types.js';

export const suppressRemovalOfDeprecatedField: Rule = ({ changes, oldSchema, newSchema }) => {
Expand Down

0 comments on commit 97c898d

Please sign in to comment.