From 2f8f7be076a3fd049476e2a9627b9b52afa4db66 Mon Sep 17 00:00:00 2001 From: Jeroen Engels Date: Sat, 2 Apr 2016 20:43:43 +0200 Subject: [PATCH] Fix option configuration examples --- docs/rules/max-asserts.md | 2 +- docs/rules/test-title.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules/max-asserts.md b/docs/rules/max-asserts.md index dc2f167f..45ea954c 100644 --- a/docs/rules/max-asserts.md +++ b/docs/rules/max-asserts.md @@ -56,5 +56,5 @@ The rule takes one option, a number, which is the maximum number of assertions f You can set the option in configuration like this: ```js -"max-asserts": [2, 5] +"ava/max-asserts": [2, 5] ``` diff --git a/docs/rules/test-title.md b/docs/rules/test-title.md index 07d8ecb7..b6bf84f5 100644 --- a/docs/rules/test-title.md +++ b/docs/rules/test-title.md @@ -31,5 +31,5 @@ The rule takes one option, a string, which could be either `"always"` or `"if-mu You can set the option in configuration like this: ```js -"test-title": [2, "always"] +"ava/test-title": [2, "always"] ```