Skip to content
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.

Commit

Permalink
[refactor] Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
pocka committed Feb 1, 2019
1 parent d4266d7 commit 042c8be
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"homepage": "https://github.com/pocka/storybook-addon-vue-info#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@storybook/addons": "^4.1.11",
"@storybook/vue": "^4.1.11",
"@types/dedent": "^0.7.0",
"@types/highlight.js": "^9.12.2",
Expand Down Expand Up @@ -102,6 +101,7 @@
]
},
"dependencies": {
"@storybook/addons": "^4.1.11",
"dedent": "^0.7.0",
"highlight.js": "^9.12.0",
"marked": "^0.3.19",
Expand Down
1 change: 0 additions & 1 deletion src/addon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ export const PanelName = AddonName + '/panel'
export const Events = {
ShowDocs: AddonName + '/show_docs'
}

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { StoryDecorator, StoryFunction } from '@storybook/vue'

import { extract } from './extract'
import { defaultOptions, InfoAddonOptions } from './options'
import { wrap, transfer } from './view'
import { transfer, wrap } from './view'

export * from './components'

Expand Down
4 changes: 3 additions & 1 deletion src/lib.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* tslint:disable:ban-types */

declare module 'vue-template-compiler' {
export interface ASTElement {
attrs?: any[]
Expand All @@ -20,7 +22,7 @@ declare module 'vue-template-compiler' {

declare module 'vuera' {
import * as React from 'react'
import { Component, AsyncComponent } from 'vue'
import { AsyncComponent, Component } from 'vue'

interface Props {
component:
Expand Down

0 comments on commit 042c8be

Please sign in to comment.