Skip to content
This repository has been archived by the owner on Jan 19, 2019. It is now read-only.

Commit

Permalink
Add test case for #126
Browse files Browse the repository at this point in the history
  • Loading branch information
armano2 committed Nov 20, 2018
1 parent 28a864b commit 2cc53bd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/lib/rules/no-unused-vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,18 @@ interface A<T extends Nullable> {
export const a: A<SomeOther> = {
foo: "bar"
};
`,
// https://github.com/bradzacher/eslint-plugin-typescript/issues/126
`
import { Component, Vue } from 'vue-property-decorator';
import HelloWorld from './components/HelloWorld.vue';
@Component({
components: {
HelloWorld
}
})
export default class App extends Vue {}
`
],

Expand Down

0 comments on commit 2cc53bd

Please sign in to comment.