Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Jan 14, 2021
1 parent d5282f3 commit 513bdc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
5 changes: 2 additions & 3 deletions plugins/linear-genome-view/src/LinearGenomeView/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -768,9 +768,8 @@ export function stateModelFactory(pluginManager: PluginManager) {
}
if (e === undefined) {
throw new Error(
`could not find a region with refName "${refName}" that contained a start position ${
s + 1
}`,
`could not find a region with refName "${refName}" that contained a start position ${s +
1}`,
)
}
if (index === -1) {
Expand Down
2 changes: 2 additions & 0 deletions plugins/linear-genome-view/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,7 @@ export {
baseLinearDisplayConfigSchema,
linearBasicDisplayConfigSchemaFactory,
}

export type { LinearGenomeViewModel, LinearGenomeViewStateModel, BlockModel }

export type { BaseLinearDisplayModel } from './BaseLinearDisplay'
6 changes: 0 additions & 6 deletions plugins/svg/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
import DisplayType from '@jbrowse/core/pluggableElementTypes/DisplayType'
import BoxRendererType from '@jbrowse/core/pluggableElementTypes/renderers/BoxRendererType'
import Plugin from '@jbrowse/core/Plugin'
import { ConfigurationSchema } from '@jbrowse/core/configuration'
import PluginManager from '@jbrowse/core/PluginManager'
import TrackType from '@jbrowse/core/pluggableElementTypes/TrackType'
import { BaseLinearDisplayComponent } from '@jbrowse/plugin-linear-genome-view'
import {
createBaseTrackConfig,
createBaseTrackModel,
} from '@jbrowse/core/pluggableElementTypes/models'
import {
configSchema as svgFeatureRendererConfigSchema,
ReactComponent as SvgFeatureRendererReactComponent,
Expand Down

0 comments on commit 513bdc1

Please sign in to comment.