You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script lang="ts">
import {Vue, Component} from 'vue-property-decorator';
import {State, Getter} from 'vuex-class';
import GroupItem from './GroupItem';
@Component({
components: {
GroupItem
}
})
export default class GroupList extends Vue {
@State('notebook/groups') groups: any;
created() {
}
}
</script>
error info
@Component({
components: {
GroupItem // ESLint: Expected indentation of 4 spaces but found 8. (indent)
}
}) // ESLint: Expected indentation of 4 spaces but found 0. (indent)
What is expected?
no indent error
What is actually happening?
The code in @Component parameter must indent of 4 space for every lines.
Version
3.0.0-rc.5
Reproduction link
https://github.com/jaune162/vue-typescript-mdeditor
Steps to reproduce
error info
What is expected?
no indent error
What is actually happening?
The code in
@Component
parameter must indent of 4 space for every lines.My .eslintrc.js
The text was updated successfully, but these errors were encountered: