Skip to content
This repository has been archived by the owner on May 29, 2023. It is now read-only.

Commit

Permalink
fix: fix the linter (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored Dec 3, 2018
1 parent 03a21ab commit 09fa08a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/issue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ async function getRepoIssues(repo: Repo, flags?: Flags): Promise<IssueResult> {
}
if (flags.type) {
const flagTypes = flags.type.split(',')
.map(t => t.trim())
.filter(t => t.length > 0);
.map(t => t.trim())
.filter(t => t.length > 0);
let found = false;
for (const flagType of flagTypes) {
for (const issueType of r.types) {
if (flagType === issueType) {
if (flagType === issueType) {
found = true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/slo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import {getIssues} from './issue';
import {ApiResult, Flags, Issue, IssueResult, LanguageResult, RepoResult} from './types';
import {languages, labels} from './util';
import {labels, languages} from './util';

import Table = require('cli-table');
import * as meow from 'meow';
Expand Down

0 comments on commit 09fa08a

Please sign in to comment.