chore: fix lint-staged hook

include vue files
This commit is contained in:
2018-09-17 18:36:31 -07:00
parent b73957e7df
commit 1f2e307f05
4 changed files with 6 additions and 7 deletions

View File

@@ -10,5 +10,5 @@
<script>
export default {
name: 'AppNav',
}
};
</script>

View File

@@ -31,13 +31,13 @@ export default {
const favorites = store.get('favorites') || [];
return {
favorites
favorites,
};
},
computed: {
favoriteStrains() {
return this.$strainData.strains.filter(strain => this.favorites.indexOf(strain.id) !== -1);
}
},
},
}
};
</script>

View File

@@ -27,7 +27,6 @@
</template>
<script>
import lunr from 'lunr';
import SearchForm from '../components/SearchForm.vue';
import StrainList from '../components/StrainList.vue';
import emitter from '../lib/emitter.mjs';