Skip to content

Commit

Permalink
fix: eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
axetroy committed Mar 10, 2019
1 parent f037c08 commit 3235ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ enum Type {
appendToChangelog = "append to CHANGELOG.md"
}

interface Config {
interface IConfig {
type: string;
preset: string;
releaseCount: number;
Expand All @@ -36,7 +36,7 @@ export function activate(context: VSCODE.ExtensionContext) {
return;
}

async function generate(config: Config) {
async function generate(config: IConfig) {
const workspaceFolder = await prickWorkspace();

if (!workspaceFolder) {
Expand Down

0 comments on commit 3235ecb

Please sign in to comment.