fixed lint erros

This commit is contained in:
Brecert 2019-02-22 16:08:40 -06:00
parent 151605c63f
commit f0187e3baf
6 changed files with 11 additions and 10 deletions

View file

@ -7,7 +7,14 @@
"extends": ["plugin:vue/essential", "eslint:recommended"],
"plugins": ["@vue"],
"rules": {
"no-console": "off"
"no-console": "off",
"no-unused-vars": [
"off",
{
"args": "after-used",
"ignoreRestSiblings": true
}
]
},
"parserOptions": {
"parser": "babel-eslint",

View file

@ -55,10 +55,7 @@ import Spinner from '@/components/Spinner.vue'
import ChangeLog from '@/components/ChangeLog.vue'
import changelog from '@/changelog.js'
export default {
components: {
Spinner,
ChangeLog
},
components: {},
data() {
return {
changelog: changelog[0]

View file

@ -14,7 +14,6 @@ import Tab from './Tab.vue'
import FriendsTemplate from './FriendsTemplate.vue'
export default {
components: {
Tab,
FriendsTemplate
},
computed: {

View file

@ -103,7 +103,6 @@ export default {
}
}
</script>
</script>
<style scoped>
.input {

View file

@ -39,7 +39,7 @@ export default (message) => {
futoji.addTransformer({
name: 'code-block',
symbol: '``\`',
symbol: '```',
recursive: false,
transformer: text => `<div class="codeblock"><code>${formatCode(text.trim())}</code></div>`,
})

View file

@ -23,7 +23,7 @@
<script>
import {bus} from '../main'
import Settings from '@/components/app/Settings.vue'
import GDriveLinkMenu from '@/components/app/GDriveLinkMenu.vue'
// import GDriveLinkMenu from '@/components/app/GDriveLinkMenu.vue'
import LeftPanel from './../components/app/LeftPanel.vue'
import RightPanel from './../components/app/RightPanel.vue'
import ConnectingScreen from './../components/app/ConnectingScreen.vue'
@ -35,7 +35,6 @@ export default {
RightPanel,
ConnectingScreen,
Settings,
GDriveLinkMenu
},
data() {
return {