diff --git a/docs/develop/custom-rules/index.md b/docs/develop/custom-rules/index.md index 5e6166834e3..ca5b1003721 100644 --- a/docs/develop/custom-rules/index.md +++ b/docs/develop/custom-rules/index.md @@ -18,8 +18,8 @@ __Important conventions__: Now, let us first write the rule in TypeScript: ```typescript -import * as ts from "typescript"; import * as Lint from "tslint"; +import * as ts from "typescript"; export class Rule extends Lint.Rules.AbstractRule { public static FAILURE_STRING = "import statement forbidden";