From b15e091c1c1e70dda05eba4b1347ac067efbadb7 Mon Sep 17 00:00:00 2001 From: Teppei Sato <teppeis@gmail.com> Date: Sun, 3 Feb 2019 23:59:51 +0900 Subject: [PATCH] docs: fix pacakgeNames to packagePatterns (#3160) docs: fix pacakgeNames to packagePatterns --- website/docs/configuration-options.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/configuration-options.md b/website/docs/configuration-options.md index a107ce814b..9878f49dd0 100644 --- a/website/docs/configuration-options.md +++ b/website/docs/configuration-options.md @@ -522,7 +522,7 @@ Use this field if you want to have one or more package name patterns excluded in ``` "packageRules": [{ "packagePatterns": ["^eslint"], - "excludePackageNames": ["^eslint-foo"] + "excludePackagePatterns": ["^eslint-foo"] }] ``` @@ -575,7 +575,7 @@ Use this field if you want to have one or more package names patterns in your pa ``` "packageRules": [{ - "packageNames": ["^angular"], + "packagePatterns": ["^angular"], "rangeStrategy": "replace" }] ``` -- GitLab