From b32af34f9d35e3111e5ab0bcb2eb69171f653548 Mon Sep 17 00:00:00 2001 From: Travis Swicegood Date: Tue, 28 Feb 2017 14:58:20 -0600 Subject: [PATCH] Organize alphabetically --- docs/rules/README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/rules/README.md b/docs/rules/README.md index 3325116..8c16752 100644 --- a/docs/rules/README.md +++ b/docs/rules/README.md @@ -1,19 +1,19 @@ # Rules -* [no-exclusive-tests](no-exclusive-tests.md) - disallow exclusive mocha tests -* [no-skipped-tests](no-skipped-tests.md) - disallow skipped mocha tests (fixable) -* [no-pending-tests](no-pending-tests.md) - disallow pending/unimplemented mocha tests * [handle-done-callback](handle-done-callback.md) - enforces handling of callbacks for async tests -* [no-synchronous-tests](no-synchronous-tests.md) - disallow synchronous tests +* [max-top-level-suites](max-top-level-suites.md) - limit the number of top-level suites in a single file +* [no-exclusive-tests](no-exclusive-tests.md) - disallow exclusive mocha tests * [no-global-tests](no-global-tests.md) - disallow global tests -* [no-return-and-callback](no-return-and-callback.md) - disallow returning in a test or hook function that uses a callback -* [valid-test-description](valid-test-description.md) - match test descriptions against a pre-configured regular expression -* [valid-suite-description](valid-suite-description.md) - match suite descriptions against a pre-configured regular expression -* [no-sibling-hooks](no-sibling-hooks.md) - disallow duplicate uses of a hook at the same level inside a describe -* [no-mocha-arrows](no-mocha-arrows.md) - disallow arrow functions as arguments to mocha globals * [no-hooks](no-hooks.md) - disallow hooks * [no-hooks-for-single-case](no-hooks-for-single-case.md) - disallow hooks for a single test or test suite -* [no-top-level-hooks](no-top-level-hooks.md) - disallow top-level hooks * [no-identical-title](no-identical-title.md) - disallow identical titles -* [max-top-level-suites](max-top-level-suites.md) - limit the number of top-level suites in a single file +* [no-mocha-arrows](no-mocha-arrows.md) - disallow arrow functions as arguments to mocha globals * [no-nested-tests](no-nested-tests.md) - disallow tests to be nested within other tests +* [no-pending-tests](no-pending-tests.md) - disallow pending/unimplemented mocha tests +* [no-return-and-callback](no-return-and-callback.md) - disallow returning in a test or hook function that uses a callback +* [no-sibling-hooks](no-sibling-hooks.md) - disallow duplicate uses of a hook at the same level inside a describe +* [no-skipped-tests](no-skipped-tests.md) - disallow skipped mocha tests (fixable) +* [no-synchronous-tests](no-synchronous-tests.md) - disallow synchronous tests +* [no-top-level-hooks](no-top-level-hooks.md) - disallow top-level hooks +* [valid-suite-description](valid-suite-description.md) - match suite descriptions against a pre-configured regular expression +* [valid-test-description](valid-test-description.md) - match test descriptions against a pre-configured regular expression