Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkime committed Jan 28, 2022
1 parent ee67192 commit 6fd7079
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-optimizer/limits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ pageLoadAssetSize:
uiActionsEnhanced: 38494
urlDrilldown: 30063
dataViewEditor: 12000
dataViewFieldEditor: 20000
dataViewFieldEditor: 27000
dataViewManagement: 5000
reporting: 57003
visTypeHeatmap: 25340
Expand Down
3 changes: 2 additions & 1 deletion src/plugins/data_view_editor/public/shared_imports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export type {
IndexPatternAggRestrictions,
} from '../../data/public';
export { IndexPattern, IndexPatternField } from '../../data/public';
export { DataView, DataViewSpec } from '../../data_views/public';
export type { DataViewSpec } from '../../data_views/public';
export { DataView } from '../../data_views/public';

export {
createKibanaReactContext,
Expand Down
9 changes: 2 additions & 7 deletions src/plugins/data_views/public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,8 @@ export {
export { onRedirectNoIndexPattern } from './data_views';

export type { IIndexPatternFieldList, TypeMeta } from '../common';
export {
IndexPatternField,
DataViewField,
DataViewType,
META_FIELDS,
DataViewSpec,
} from '../common';
export type { DataViewSpec } from '../common';
export { IndexPatternField, DataViewField, DataViewType, META_FIELDS } from '../common';

export type { IndexPatternsContract } from './data_views';
export type { DataViewListItem } from './data_views';
Expand Down

0 comments on commit 6fd7079

Please sign in to comment.