From 4667709123b5f62145323dab8383c3ffce5de30c Mon Sep 17 00:00:00 2001 From: Oliver Joseph Ash Date: Thu, 10 Aug 2017 15:41:10 +0100 Subject: [PATCH] Add `typescript/no-unused-vars` rule to documentation (#32) --- packages/eslint-plugin-typescript/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/eslint-plugin-typescript/README.md b/packages/eslint-plugin-typescript/README.md index 05b1b71d62b..639d9e7ffef 100644 --- a/packages/eslint-plugin-typescript/README.md +++ b/packages/eslint-plugin-typescript/README.md @@ -60,3 +60,4 @@ Then configure the rules you want to use under the rules section. * `typescript/prefer-namespace-keyword` - enforces the use of the keyword `namespace` over `module` to declare custom TypeScript modules. * `typescript/no-type-literal` - disallows the use of type aliases. * `typescript/member-ordering` - enforces a standard member declaration order. +* `typescript/no-unused-vars` - prevents TypeScript-specific constructs from being erroneously flagged as unused