This repository was archived by the owner on Jan 19, 2019. It is now read-only.
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
Closed
Description
Hi guys!
I have some problems with Eslint rule "Indent". When I try apply this rule on follow class:
@Component({
props: {
a: String
}
})
export default class Test extends Vue {
test() {
console.log('Test');
}
}
as a result I get
@Component({
props: {
a: String
}
})
export default class Test extends Vue {
test() {
console.log('Test');
}
}
Anyone know how fix this problem?
Thank you!