Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
164f653c
Commit
164f653c
authored
Sep 23, 2019
by
Takuya Noguchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update eslint-plugin-import from 2.16.0 to 2.18.2
the third iteration
parent
d1b475fd
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
23 additions
and
25 deletions
+23
-25
ee/app/assets/javascripts/analytics/cycle_analytics/utils.js
ee/app/assets/javascripts/analytics/cycle_analytics/utils.js
+2
-2
ee/app/assets/javascripts/approvals/components/empty_rule_name.vue
...sets/javascripts/approvals/components/empty_rule_name.vue
+1
-1
ee/app/assets/javascripts/design_management/components/design_destroyer.vue
...scripts/design_management/components/design_destroyer.vue
+1
-1
ee/app/assets/javascripts/design_management/components/toolbar/index.vue
...avascripts/design_management/components/toolbar/index.vue
+1
-1
ee/app/assets/javascripts/geo_designs/store/actions.js
ee/app/assets/javascripts/geo_designs/store/actions.js
+1
-1
ee/app/assets/javascripts/insights/insights_router.js
ee/app/assets/javascripts/insights/insights_router.js
+1
-1
ee/app/assets/javascripts/logs/stores/actions.js
ee/app/assets/javascripts/logs/stores/actions.js
+1
-1
ee/app/assets/javascripts/packages/details/components/maven_installation.vue
...cripts/packages/details/components/maven_installation.vue
+1
-1
ee/app/assets/javascripts/packages/details/components/npm_installation.vue
...ascripts/packages/details/components/npm_installation.vue
+1
-1
ee/app/assets/javascripts/project_licenses/components/license_component_links.vue
...s/project_licenses/components/license_component_links.vue
+1
-2
ee/app/assets/javascripts/related_items_tree/components/related_items_tree_app.vue
.../related_items_tree/components/related_items_tree_app.vue
+1
-1
ee/app/assets/javascripts/related_items_tree/components/related_items_tree_header.vue
...lated_items_tree/components/related_items_tree_header.vue
+1
-1
ee/app/assets/javascripts/related_items_tree/utils/epic_utils.js
...assets/javascripts/related_items_tree/utils/epic_utils.js
+1
-1
ee/app/assets/javascripts/security_configuration/components/app.vue
...ets/javascripts/security_configuration/components/app.vue
+1
-1
ee/app/assets/javascripts/security_dashboard/components/vulnerability_chart.vue
...pts/security_dashboard/components/vulnerability_chart.vue
+3
-4
ee/app/assets/javascripts/security_dashboard/store/modules/vulnerabilities/mutations.js
...rity_dashboard/store/modules/vulnerabilities/mutations.js
+1
-1
ee/app/assets/javascripts/vue_merge_request_widget/components/merge_immediately_confirmation_dialog.vue
...dget/components/merge_immediately_confirmation_dialog.vue
+1
-1
ee/spec/javascripts/vue_mr_widget/ee_mr_widget_options_spec.js
...ec/javascripts/vue_mr_widget/ee_mr_widget_options_spec.js
+1
-1
spec/frontend/error_tracking/store/list/mutation_spec.js
spec/frontend/error_tracking/store/list/mutation_spec.js
+1
-1
spec/frontend/ide/components/panes/right_spec.js
spec/frontend/ide/components/panes/right_spec.js
+1
-1
No files found.
ee/app/assets/javascripts/analytics/cycle_analytics/utils.js
View file @
164f653c
import
{
isString
}
from
'
underscore
'
;
import
dateFormat
from
'
dateformat
'
;
import
{
convertObjectPropsToCamelCase
}
from
'
~/lib/utils/common_utils
'
;
import
{
convertObjectPropsToCamelCase
}
from
'
~/lib/utils/common_utils
'
;
import
{
convertToSnakeCase
}
from
'
~/lib/utils/text_utility
'
;
import
{
convertToSnakeCase
}
from
'
~/lib/utils/text_utility
'
;
import
{
newDate
,
dayAfter
,
secondsToDays
}
from
'
~/lib/utils/datetime_utility
'
;
import
{
newDate
,
dayAfter
,
secondsToDays
}
from
'
~/lib/utils/datetime_utility
'
;
import
{
isString
}
from
'
underscore
'
;
import
dateFormat
from
'
dateformat
'
;
import
{
dateFormats
}
from
'
../shared/constants
'
;
import
{
dateFormats
}
from
'
../shared/constants
'
;
const
EVENT_TYPE_LABEL
=
'
label
'
;
const
EVENT_TYPE_LABEL
=
'
label
'
;
...
...
ee/app/assets/javascripts/approvals/components/empty_rule_name.vue
View file @
164f653c
<
script
>
<
script
>
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
{
GlPopover
,
GlLink
}
from
'
@gitlab/ui
'
;
import
{
GlPopover
,
GlLink
}
from
'
@gitlab/ui
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
export
default
{
export
default
{
components
:
{
components
:
{
...
...
ee/app/assets/javascripts/design_management/components/design_destroyer.vue
View file @
164f653c
<
script
>
<
script
>
import
createFlash
from
'
~/flash
'
;
import
{
ApolloMutation
}
from
'
vue-apollo
'
;
import
{
ApolloMutation
}
from
'
vue-apollo
'
;
import
createFlash
from
'
~/flash
'
;
import
projectQuery
from
'
../graphql/queries/project.query.graphql
'
;
import
projectQuery
from
'
../graphql/queries/project.query.graphql
'
;
import
destroyDesignMutation
from
'
../graphql/mutations/destroyDesign.mutation.graphql
'
;
import
destroyDesignMutation
from
'
../graphql/mutations/destroyDesign.mutation.graphql
'
;
import
{
updateStoreAfterDesignsDelete
}
from
'
../utils/cache_update
'
;
import
{
updateStoreAfterDesignsDelete
}
from
'
../utils/cache_update
'
;
...
...
ee/app/assets/javascripts/design_management/components/toolbar/index.vue
View file @
164f653c
<
script
>
<
script
>
import
{
GlButton
}
from
'
@gitlab/ui
'
;
import
{
__
,
sprintf
}
from
'
~/locale
'
;
import
{
__
,
sprintf
}
from
'
~/locale
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
timeagoMixin
from
'
~/vue_shared/mixins/timeago
'
;
import
timeagoMixin
from
'
~/vue_shared/mixins/timeago
'
;
import
{
GlButton
}
from
'
@gitlab/ui
'
;
import
Pagination
from
'
./pagination.vue
'
;
import
Pagination
from
'
./pagination.vue
'
;
import
DeleteButton
from
'
../delete_button.vue
'
;
import
DeleteButton
from
'
../delete_button.vue
'
;
import
permissionsQuery
from
'
../../graphql/queries/permissions.query.graphql
'
;
import
permissionsQuery
from
'
../../graphql/queries/permissions.query.graphql
'
;
...
...
ee/app/assets/javascripts/geo_designs/store/actions.js
View file @
164f653c
import
Api
from
'
ee/api
'
;
import
createFlash
from
'
~/flash
'
;
import
createFlash
from
'
~/flash
'
;
import
{
__
}
from
'
~/locale
'
;
import
{
__
}
from
'
~/locale
'
;
import
{
parseIntPagination
,
normalizeHeaders
}
from
'
~/lib/utils/common_utils
'
;
import
{
parseIntPagination
,
normalizeHeaders
}
from
'
~/lib/utils/common_utils
'
;
import
Api
from
'
ee/api
'
;
import
*
as
types
from
'
./mutation_types
'
;
import
*
as
types
from
'
./mutation_types
'
;
// Fetch Designs
// Fetch Designs
...
...
ee/app/assets/javascripts/insights/insights_router.js
View file @
164f653c
import
Vue
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
VueRouter
from
'
vue-router
'
;
import
VueRouter
from
'
vue-router
'
;
import
{
joinPaths
}
from
'
~/lib/utils/url_utility
'
;
import
store
from
'
ee/insights/stores
'
;
import
store
from
'
ee/insights/stores
'
;
import
{
joinPaths
}
from
'
~/lib/utils/url_utility
'
;
Vue
.
use
(
VueRouter
);
Vue
.
use
(
VueRouter
);
...
...
ee/app/assets/javascripts/logs/stores/actions.js
View file @
164f653c
import
Api
from
'
ee/api
'
;
import
{
backOff
}
from
'
~/lib/utils/common_utils
'
;
import
{
backOff
}
from
'
~/lib/utils/common_utils
'
;
import
httpStatusCodes
from
'
~/lib/utils/http_status
'
;
import
httpStatusCodes
from
'
~/lib/utils/http_status
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
flash
from
'
~/flash
'
;
import
flash
from
'
~/flash
'
;
import
{
s__
}
from
'
~/locale
'
;
import
{
s__
}
from
'
~/locale
'
;
import
Api
from
'
ee/api
'
;
import
*
as
types
from
'
./mutation_types
'
;
import
*
as
types
from
'
./mutation_types
'
;
const
requestLogsUntilData
=
({
projectPath
,
environmentId
,
podName
})
=>
const
requestLogsUntilData
=
({
projectPath
,
environmentId
,
podName
})
=>
...
...
ee/app/assets/javascripts/packages/details/components/maven_installation.vue
View file @
164f653c
<
script
>
<
script
>
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
GlTab
,
GlTabs
}
from
'
@gitlab/ui
'
;
import
{
GlTab
,
GlTabs
}
from
'
@gitlab/ui
'
;
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
CodeInstruction
from
'
./code_instruction.vue
'
;
import
CodeInstruction
from
'
./code_instruction.vue
'
;
export
default
{
export
default
{
...
...
ee/app/assets/javascripts/packages/details/components/npm_installation.vue
View file @
164f653c
<
script
>
<
script
>
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
GlTab
,
GlTabs
}
from
'
@gitlab/ui
'
;
import
{
GlTab
,
GlTabs
}
from
'
@gitlab/ui
'
;
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
CodeInstruction
from
'
./code_instruction.vue
'
;
import
CodeInstruction
from
'
./code_instruction.vue
'
;
export
default
{
export
default
{
...
...
ee/app/assets/javascripts/project_licenses/components/license_component_links.vue
View file @
164f653c
<
script
>
<
script
>
import
{
uniqueId
}
from
'
underscore
'
;
import
{
uniqueId
}
from
'
underscore
'
;
import
{
sprintf
,
s__
}
from
'
~/locale
'
;
import
{
GlLink
,
GlIntersperse
,
GlModal
,
GlButton
,
GlModalDirective
}
from
'
@gitlab/ui
'
;
import
{
GlLink
,
GlIntersperse
,
GlModal
,
GlButton
,
GlModalDirective
}
from
'
@gitlab/ui
'
;
import
{
sprintf
,
s__
}
from
'
~/locale
'
;
const
MODAL_ID_PREFIX
=
'
license-component-link-modal-
'
;
const
MODAL_ID_PREFIX
=
'
license-component-link-modal-
'
;
export
const
VISIBLE_COMPONENT_COUNT
=
2
;
export
const
VISIBLE_COMPONENT_COUNT
=
2
;
...
...
ee/app/assets/javascripts/related_items_tree/components/related_items_tree_app.vue
View file @
164f653c
...
@@ -5,8 +5,8 @@ import { GlLoadingIcon } from '@gitlab/ui';
...
@@ -5,8 +5,8 @@ import { GlLoadingIcon } from '@gitlab/ui';
import
{
issuableTypesMap
}
from
'
ee/related_issues/constants
'
;
import
{
issuableTypesMap
}
from
'
ee/related_issues/constants
'
;
import
SlotSwitch
from
'
~/vue_shared/components/slot_switch.vue
'
;
import
AddItemForm
from
'
ee/related_issues/components/add_issuable_form.vue
'
;
import
AddItemForm
from
'
ee/related_issues/components/add_issuable_form.vue
'
;
import
SlotSwitch
from
'
~/vue_shared/components/slot_switch.vue
'
;
import
CreateEpicForm
from
'
./create_epic_form.vue
'
;
import
CreateEpicForm
from
'
./create_epic_form.vue
'
;
import
CreateIssueForm
from
'
./create_issue_form.vue
'
;
import
CreateIssueForm
from
'
./create_issue_form.vue
'
;
import
IssueActionsSplitButton
from
'
./issue_actions_split_button.vue
'
;
import
IssueActionsSplitButton
from
'
./issue_actions_split_button.vue
'
;
...
...
ee/app/assets/javascripts/related_items_tree/components/related_items_tree_header.vue
View file @
164f653c
...
@@ -3,10 +3,10 @@ import { mapState, mapActions } from 'vuex';
...
@@ -3,10 +3,10 @@ import { mapState, mapActions } from 'vuex';
import
{
GlButton
,
GlTooltipDirective
}
from
'
@gitlab/ui
'
;
import
{
GlButton
,
GlTooltipDirective
}
from
'
@gitlab/ui
'
;
import
{
issuableTypesMap
}
from
'
ee/related_issues/constants
'
;
import
{
sprintf
,
s__
}
from
'
~/locale
'
;
import
{
sprintf
,
s__
}
from
'
~/locale
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
{
issuableTypesMap
}
from
'
ee/related_issues/constants
'
;
import
EpicActionsSplitButton
from
'
./epic_actions_split_button.vue
'
;
import
EpicActionsSplitButton
from
'
./epic_actions_split_button.vue
'
;
...
...
ee/app/assets/javascripts/related_items_tree/utils/epic_utils.js
View file @
164f653c
import
{
PathIdSeparator
}
from
'
ee/related_issues/constants
'
;
import
createGqClient
from
'
~/lib/graphql
'
;
import
createGqClient
from
'
~/lib/graphql
'
;
import
{
PathIdSeparator
}
from
'
ee/related_issues/constants
'
;
import
{
ChildType
}
from
'
../constants
'
;
import
{
ChildType
}
from
'
../constants
'
;
export
const
gqClient
=
createGqClient
();
export
const
gqClient
=
createGqClient
();
...
...
ee/app/assets/javascripts/security_configuration/components/app.vue
View file @
164f653c
<
script
>
<
script
>
import
{
__
,
sprintf
}
from
'
~/locale
'
;
import
{
GlLink
}
from
'
@gitlab/ui
'
;
import
{
GlLink
}
from
'
@gitlab/ui
'
;
import
{
__
,
sprintf
}
from
'
~/locale
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
export
default
{
export
default
{
...
...
ee/app/assets/javascripts/security_dashboard/components/vulnerability_chart.vue
View file @
164f653c
...
@@ -2,15 +2,14 @@
...
@@ -2,15 +2,14 @@
import
{
mapState
,
mapGetters
,
mapActions
}
from
'
vuex
'
;
import
{
mapState
,
mapGetters
,
mapActions
}
from
'
vuex
'
;
import
dateFormat
from
'
dateformat
'
;
import
dateFormat
from
'
dateformat
'
;
import
{
GlTooltipDirective
,
GlTable
}
from
'
@gitlab/ui
'
;
import
{
GlSparklineChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
SeverityBadge
from
'
ee/vue_shared/security_reports/components/severity_badge.vue
'
;
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
s__
,
sprintf
}
from
'
~/locale
'
;
import
{
firstAndLastY
}
from
'
~/lib/utils/chart_utils
'
;
import
{
firstAndLastY
}
from
'
~/lib/utils/chart_utils
'
;
import
{
formattedChangeInPercent
}
from
'
~/lib/utils/number_utils
'
;
import
{
formattedChangeInPercent
}
from
'
~/lib/utils/number_utils
'
;
import
{
GlTooltipDirective
,
GlTable
}
from
'
@gitlab/ui
'
;
import
{
GlSparklineChart
}
from
'
@gitlab/ui/dist/charts
'
;
import
SeverityBadge
from
'
ee/vue_shared/security_reports/components/severity_badge.vue
'
;
import
ChartButtons
from
'
./vulnerability_chart_buttons.vue
'
;
import
ChartButtons
from
'
./vulnerability_chart_buttons.vue
'
;
import
{
DAY_IN_MS
,
DAYS
}
from
'
../store/modules/vulnerabilities/constants
'
;
import
{
DAY_IN_MS
,
DAYS
}
from
'
../store/modules/vulnerabilities/constants
'
;
...
...
ee/app/assets/javascripts/security_dashboard/store/modules/vulnerabilities/mutations.js
View file @
164f653c
import
Vue
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
getFileLocation
from
'
ee/vue_shared/security_reports/store/utils/get_file_location
'
;
import
{
s__
,
__
}
from
'
~/locale
'
;
import
{
s__
,
__
}
from
'
~/locale
'
;
import
{
visitUrl
}
from
'
~/lib/utils/url_utility
'
;
import
{
visitUrl
}
from
'
~/lib/utils/url_utility
'
;
import
getFileLocation
from
'
ee/vue_shared/security_reports/store/utils/get_file_location
'
;
import
*
as
types
from
'
./mutation_types
'
;
import
*
as
types
from
'
./mutation_types
'
;
import
{
DAYS
}
from
'
./constants
'
;
import
{
DAYS
}
from
'
./constants
'
;
import
{
isSameVulnerability
}
from
'
./utils
'
;
import
{
isSameVulnerability
}
from
'
./utils
'
;
...
...
ee/app/assets/javascripts/vue_merge_request_widget/components/merge_immediately_confirmation_dialog.vue
View file @
164f653c
<
script
>
<
script
>
import
{
GlModal
,
GlButton
}
from
'
@gitlab/ui
'
;
import
{
GlModal
,
GlButton
}
from
'
@gitlab/ui
'
;
import
{
__
,
sprintf
}
from
'
~/locale
'
;
import
_
from
'
underscore
'
;
import
_
from
'
underscore
'
;
import
{
__
,
sprintf
}
from
'
~/locale
'
;
export
default
{
export
default
{
name
:
'
MergeImmediatelyConfirmationDialog
'
,
name
:
'
MergeImmediatelyConfirmationDialog
'
,
...
...
ee/spec/javascripts/vue_mr_widget/ee_mr_widget_options_spec.js
View file @
164f653c
...
@@ -5,7 +5,6 @@ import MRWidgetStore from 'ee/vue_merge_request_widget/stores/mr_widget_store';
...
@@ -5,7 +5,6 @@ import MRWidgetStore from 'ee/vue_merge_request_widget/stores/mr_widget_store';
import
filterByKey
from
'
ee/vue_shared/security_reports/store/utils/filter_by_key
'
;
import
filterByKey
from
'
ee/vue_shared/security_reports/store/utils/filter_by_key
'
;
import
mountComponent
from
'
spec/helpers/vue_mount_component_helper
'
;
import
mountComponent
from
'
spec/helpers/vue_mount_component_helper
'
;
import
{
TEST_HOST
}
from
'
spec/test_constants
'
;
import
{
TEST_HOST
}
from
'
spec/test_constants
'
;
import
{
SUCCESS
}
from
'
~/vue_merge_request_widget/components/deployment/constants
'
;
import
mockData
,
{
import
mockData
,
{
baseIssues
,
baseIssues
,
...
@@ -26,6 +25,7 @@ import {
...
@@ -26,6 +25,7 @@ import {
sastBaseAllIssues
,
sastBaseAllIssues
,
sastHeadAllIssues
,
sastHeadAllIssues
,
}
from
'
ee_spec/vue_shared/security_reports/mock_data
'
;
}
from
'
ee_spec/vue_shared/security_reports/mock_data
'
;
import
{
SUCCESS
}
from
'
~/vue_merge_request_widget/components/deployment/constants
'
;
import
{
convertObjectPropsToCamelCase
}
from
'
~/lib/utils/common_utils
'
;
import
{
convertObjectPropsToCamelCase
}
from
'
~/lib/utils/common_utils
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
{
MTWPS_MERGE_STRATEGY
,
MT_MERGE_STRATEGY
}
from
'
~/vue_merge_request_widget/constants
'
;
import
{
MTWPS_MERGE_STRATEGY
,
MT_MERGE_STRATEGY
}
from
'
~/vue_merge_request_widget/constants
'
;
...
...
spec/frontend/error_tracking/store/list/mutation_spec.js
View file @
164f653c
import
{
useLocalStorageSpy
}
from
'
helpers/local_storage_helper
'
;
import
mutations
from
'
~/error_tracking/store/list/mutations
'
;
import
mutations
from
'
~/error_tracking/store/list/mutations
'
;
import
*
as
types
from
'
~/error_tracking/store/list/mutation_types
'
;
import
*
as
types
from
'
~/error_tracking/store/list/mutation_types
'
;
import
{
useLocalStorageSpy
}
from
'
helpers/local_storage_helper
'
;
const
ADD_RECENT_SEARCH
=
mutations
[
types
.
ADD_RECENT_SEARCH
];
const
ADD_RECENT_SEARCH
=
mutations
[
types
.
ADD_RECENT_SEARCH
];
const
CLEAR_RECENT_SEARCHES
=
mutations
[
types
.
CLEAR_RECENT_SEARCHES
];
const
CLEAR_RECENT_SEARCHES
=
mutations
[
types
.
CLEAR_RECENT_SEARCHES
];
...
...
spec/frontend/ide/components/panes/right_spec.js
View file @
164f653c
import
Vue
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
'
~/behaviors/markdown/render_gfm
'
;
import
'
~/behaviors/markdown/render_gfm
'
;
import
{
createComponentWithStore
}
from
'
helpers/vue_mount_component_helper
'
;
import
{
createStore
}
from
'
~/ide/stores
'
;
import
{
createStore
}
from
'
~/ide/stores
'
;
import
RightPane
from
'
~/ide/components/panes/right.vue
'
;
import
RightPane
from
'
~/ide/components/panes/right.vue
'
;
import
{
rightSidebarViews
}
from
'
~/ide/constants
'
;
import
{
rightSidebarViews
}
from
'
~/ide/constants
'
;
import
{
createComponentWithStore
}
from
'
helpers/vue_mount_component_helper
'
;
describe
(
'
IDE right pane
'
,
()
=>
{
describe
(
'
IDE right pane
'
,
()
=>
{
let
Component
;
let
Component
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment