From a94e86545e3585c80765eefde9e19a41475d413a Mon Sep 17 00:00:00 2001 From: James Jensen Date: Mon, 21 Jan 2019 21:25:18 +0800 Subject: [PATCH] Update index.md Alphabetise imports in example, as per `tslint:latest` --- docs/develop/custom-rules/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";