Skip to content
This repository was archived by the owner on Jul 29, 2020. It is now read-only.

Latest commit

 

History

History
17 lines (13 loc) · 367 Bytes

File metadata and controls

17 lines (13 loc) · 367 Bytes

eslint-plugin-test-no-only

This eslint plugin add rules to detect test.only or describe.only used in jest.

It is useful as a pre-commit or pre-push rules to avoid committing or pushing it.

Configuration

{
    "plugins": [ "test-no-only" ],
    "rules": {
        "test-no-only/test-no-only": 2,
        "test-no-only/describe-no-only": 2
    }
}