-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Security Solutions] Removes tech debt of exporting all from linter rule for security_solution plugin #120188
Changes from all commits
bd97767
10e1d4a
eb8a3db
164f4c1
299155b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,8 @@ import { BrowserFields } from '../../containers/source'; | |
import { OnUpdateColumns } from '../../../timelines/components/timeline/events'; | ||
import * as i18n from './translations'; | ||
import { EventFieldsData } from './types'; | ||
import { BrowserField, ColumnHeaderOptions } from '../../../../common'; | ||
import { ColumnHeaderOptions } from '../../../../common/types'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, can these be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These can, but most of the times these are auto-inferred by typescript. There are linter rules for forcing these with an auto-fix as well so I am not going to overly worry about them in these few cases for this PR. |
||
import { BrowserField } from '../../../../common/search_strategy'; | ||
import { FieldValueCell } from './table/field_value_cell'; | ||
import { FieldNameCell } from './table/field_name_cell'; | ||
import { ActionCell } from './table/action_cell'; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can this be a
import type
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These can, but most of the times these are auto-inferred by typescript. There are linter rules for forcing these with an auto-fix as well so I am not going to overly worry about them in these few cases for this PR.