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

Commit

Permalink
Autofix: TypeScript imports
Browse files Browse the repository at this point in the history
[atomist:generated] [atomist:autofix=typescript_imports]
  • Loading branch information
Rod Johnson authored and atomist-bot committed Jul 17, 2019
1 parent 97ce557 commit 35dacd1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 5 additions & 1 deletion lib/feature/secret/secretSniffing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
* limitations under the License.
*/

import { Project, projectUtils, RepoRef } from "@atomist/automation-client";
import {
Project,
projectUtils,
RepoRef,
} from "@atomist/automation-client";
import * as _ from "lodash";

export interface ExposedSecret {
Expand Down
5 changes: 4 additions & 1 deletion lib/feature/secret/snifferOptionsLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
* limitations under the License.
*/

import { SecretDefinition, SnifferOptions } from "./secretSniffing";
import {
SecretDefinition,
SnifferOptions,
} from "./secretSniffing";

import * as yaml from "yamljs";

Expand Down
5 changes: 4 additions & 1 deletion test/features/secretSniffing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@

import { InMemoryProject } from "@atomist/automation-client";
import * as assert from "power-assert";
import { sniffFileContent, sniffProject } from "../../lib/feature/secret/secretSniffing";
import {
sniffFileContent,
sniffProject,
} from "../../lib/feature/secret/secretSniffing";
import { loadSnifferOptions } from "../../lib/feature/secret/snifferOptionsLoader";

describe("secret sniffing", () => {
Expand Down

0 comments on commit 35dacd1

Please sign in to comment.