Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kinopio-api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adam Procter
kinopio-api
Commits
590df3e1
Commit
590df3e1
authored
4 years ago
by
Adam Procter
Browse files
Options
Downloads
Patches
Plain Diff
ran linter
parent
7f45d7c3
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.eslintrc.js
+11
-15
11 additions, 15 deletions
.eslintrc.js
babel.config.js
+2
-2
2 additions, 2 deletions
babel.config.js
src/router/index.js
+10
-10
10 additions, 10 deletions
src/router/index.js
src/store/index.js
+2
-2
2 additions, 2 deletions
src/store/index.js
with
25 additions
and
29 deletions
.eslintrc.js
+
11
−
15
View file @
590df3e1
module
.
exports
=
{
"
root
"
:
true
,
"
env
"
:
{
"
node
"
:
true
root
:
true
,
env
:
{
node
:
true
,
},
"
extends
"
:
[
"
plugin:vue/vue3-essential
"
,
"
eslint:recommended
"
,
"
@vue/prettier
"
],
"
parserOptions
"
:
{
"
parser
"
:
"
babel-eslint
"
extends
:
[
'
plugin:vue/vue3-essential
'
,
'
eslint:recommended
'
,
'
@vue/prettier
'
],
parserOptions
:
{
parser
:
'
babel-eslint
'
,
},
"
rules
"
:
{}
rules
:
{}
,
}
This diff is collapsed.
Click to expand it.
babel.config.js
+
2
−
2
View file @
590df3e1
module
.
exports
=
{
presets
:
[
"
@vue/cli-plugin-babel/preset
"
],
}
;
presets
:
[
'
@vue/cli-plugin-babel/preset
'
],
}
This diff is collapsed.
Click to expand it.
src/router/index.js
+
10
−
10
View file @
590df3e1
import
{
createRouter
,
createWebHistory
}
from
"
vue-router
"
;
import
Home
from
"
../views/Home.vue
"
;
import
{
createRouter
,
createWebHistory
}
from
'
vue-router
'
import
Home
from
'
../views/Home.vue
'
const
routes
=
[
{
path
:
"
/
"
,
name
:
"
Home
"
,
path
:
'
/
'
,
name
:
'
Home
'
,
component
:
Home
,
},
{
path
:
"
/about
"
,
name
:
"
About
"
,
path
:
'
/about
'
,
name
:
'
About
'
,
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component
:
()
=>
import
(
/* webpackChunkName: "about" */
"
../views/About.vue
"
),
import
(
/* webpackChunkName: "about" */
'
../views/About.vue
'
),
},
]
;
]
const
router
=
createRouter
({
history
:
createWebHistory
(
process
.
env
.
BASE_URL
),
routes
,
})
;
})
export
default
router
;
export
default
router
This diff is collapsed.
Click to expand it.
src/store/index.js
+
2
−
2
View file @
590df3e1
import
{
createStore
}
from
"
vuex
"
;
import
{
createStore
}
from
'
vuex
'
export
default
createStore
({
state
:
{},
mutations
:
{},
actions
:
{},
modules
:
{},
})
;
})
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment