5.0.2 ā€¢ Published 2 years ago

@putout/plugin-remove-only v5.0.2

Weekly downloads
2,782
License
MIT
Repository
github
Last release
2 years ago

@putout/plugin-remove-only NPM version

šŸŠPutout plugin adds ability to find and remove test.only calls. Part of @putout/plugin-tape.

Install

npm i @putout/plugin-remove-only

Rule

Rule remove-only is enabled by default, to disable add to .putout.json:

{
    "rules": {
        "remove-only": "off"
    }
}

āŒ Incorrect code example

test.only('some test', (t) => {
    t.end();
});

āœ… Correct code Example

test('some test', (t) => {
    t.end();
});

License

MIT

5.0.2

2 years ago

5.0.1

2 years ago

5.0.0

3 years ago

4.1.0

4 years ago

4.0.0

5 years ago

3.0.0

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago