mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
618 B
618 B
Core API for check and Match (check)
Prevent misusage of Check.
Rule Details
This rule aims to prevent errors when using check and Match.
The following patterns are considered warnings:
check() // missing arguments
Match.test() // missing argument
The following patterns are not warnings:
check(foo, String)
When Not To Use It
Disable this rule if you are not using the check package.