From bc2a9d6184973f1076e9aa4404fec3207b0107d7 Mon Sep 17 00:00:00 2001 From: Sidney Nemzer Date: Sat, 7 Mar 2020 13:21:24 -0800 Subject: [PATCH] docs(eslint-plugin): [no-namespace] fix typo (#1702) --- packages/eslint-plugin/docs/rules/no-namespace.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin/docs/rules/no-namespace.md b/packages/eslint-plugin/docs/rules/no-namespace.md index 3bcb1a3868a..d82ad724b7b 100644 --- a/packages/eslint-plugin/docs/rules/no-namespace.md +++ b/packages/eslint-plugin/docs/rules/no-namespace.md @@ -16,7 +16,7 @@ or more of the following you may pass an object with the options set as follows: - `allowDeclarations` set to `true` will allow you to `declare` custom TypeScript modules and namespaces (Default: `false`). - `allowDefinitionFiles` set to `true` will allow you to `declare` and use custom TypeScript modules and namespaces - inside definition files (Default: `false`). + inside definition files (Default: `true`). Examples of **incorrect** code for the default `{ "allowDeclarations": false, "allowDefinitionFiles": false }` options: