Skip to content
Snippets Groups Projects
Commit 65a69c76 authored by CazSaa's avatar CazSaa
Browse files

Fix ESLint warnings

parent 9624714a
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ module.exports = {
ignoreWhenNoAttributes: true,
ignoreWhenEmpty: true,
ignores: ['pre', 'textarea', 'NuxtLink', 'h1', 'h2', 'h3', 'button', ...INLINE_ELEMENTS]
}]
}],
'space-before-function-paren': ['warn', 'never']
}
}
......@@ -10,7 +10,7 @@ export default {
head() {
return {
bodyAttrs: {
id: "default-page"
id: 'default-page'
}
}
}
......
......@@ -8,8 +8,13 @@
<script>
export default {
props: ['error'],
layout: 'errorLayout',
props: {
error: {
type: Object,
default() { return {} }
}
}
}
</script>
......
......@@ -18,6 +18,6 @@ export default {
<style>
#error-page {
background-image: linear-gradient(hsl(201, 16%, 43%), #003b70);
background-image: linear-gradient(#5c737f, #003b70);
}
</style>
<template>
<div class="container">
<a id="top"></a>
<TheDroplet/>
<NuxtChild/>
<TheStatistics/>
<TheSettings/>
<a id="top" />
<TheDroplet />
<NuxtChild />
<TheStatistics />
<TheSettings />
</div>
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment