Skip to content

Commit

Permalink
Organize alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
tswicegood committed Feb 28, 2017
1 parent ba36ecd commit b32af34
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/rules/README.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b32af34

Please sign in to comment.