style: run linter (#232)

This commit is contained in:
Tom French 2022-08-31 23:32:25 +01:00 committed by GitHub
parent 0fcfffea57
commit 01d0eb2f0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 13 deletions

View file

@ -1,10 +1,10 @@
export {
convertForInsert,
convertForUpdate,
convertFromSelect,
convertInputType,
convertForInsert,
convertForUpdate,
convertFromSelect,
convertInputType
} from './schema-helpers';
export { compileQuery } from "./compiler";
export { makeViews } from "./views";
export { schema, schemaConfig } from "./schema";
export { runQuery, runCompiledQuery } from "./schema/run-query";
export { compileQuery } from './compiler';
export { makeViews } from './views';
export { schema, schemaConfig } from './schema';
export { runQuery, runCompiledQuery } from './schema/run-query';

View file

@ -19,11 +19,7 @@ import {
makeClientId,
Timestamp
} from '../crdt';
import {
convertForInsert,
convertForUpdate,
convertFromSelect
} from '../aql';
import { convertForInsert, convertForUpdate, convertFromSelect } from '../aql';
import { shoveSortOrders, SORT_INCREMENT } from './sort';
export { toDateRepr, fromDateRepr } from '../models';