From 48548eaa9212fd8139a60e42040434fbb32edca9 Mon Sep 17 00:00:00 2001 From: wiese Date: Wed, 19 Jun 2019 17:55:54 +0200 Subject: [PATCH] docs(eslint-plugin): [no-explicit-any] correct docs Remove stray word from doc on-behalf-of: @wmde --- packages/eslint-plugin/docs/rules/no-explicit-any.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin/docs/rules/no-explicit-any.md b/packages/eslint-plugin/docs/rules/no-explicit-any.md index 56cafcae79b..3e3a6391a6f 100644 --- a/packages/eslint-plugin/docs/rules/no-explicit-any.md +++ b/packages/eslint-plugin/docs/rules/no-explicit-any.md @@ -5,7 +5,7 @@ When `any` is used, all compiler type checks around that value are ignored. ## Rule Details -This rule goes doesn't allow `any` types to be defined. +This rule doesn't allow `any` types to be defined. It aims to keep TypeScript maximally useful. TypeScript has a compiler flag for `--noImplicitAny` that will prevent an `any` type from being implied by the compiler, but doesn't prevent