manual lint
This commit is contained in:
parent
1654234e32
commit
1c53ac84cc
36 changed files with 204 additions and 107 deletions
|
|
@ -22,7 +22,9 @@ const generateInput = (value, padEmoji = true) => {
|
|||
Popover: {
|
||||
template: `<div><slot trigger /></div>`,
|
||||
methods: {
|
||||
updateStyles() {},
|
||||
updateStyles() {
|
||||
/* no-op */
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
|
|
@ -5,12 +5,18 @@ import backendInteractorService from 'src/services/backend_interactor_service/ba
|
|||
import { createStore } from 'vuex'
|
||||
|
||||
const mutations = {
|
||||
clearTimeline: () => {},
|
||||
clearTimeline: () => {
|
||||
/* no-op */
|
||||
},
|
||||
}
|
||||
|
||||
const actions = {
|
||||
fetchUser: () => {},
|
||||
fetchUserByScreenName: () => {},
|
||||
fetchUser: () => {
|
||||
/* no-op */
|
||||
},
|
||||
fetchUserByScreenName: () => {
|
||||
/* no-op */
|
||||
},
|
||||
}
|
||||
|
||||
const testGetters = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue