We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently there are three modes to run the checker:
jsig .
jsig file.js
jsig . --optin
/* @jsig */
I'd be good to an option to pass:
jsig . --files glob --files glob --files glob
jsigconfig
{ files: [ glob, glob, glob ] }
This allows for a package to configure the files to be checked like they would configure a linter with the files to lint.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently there are three modes to run the checker:
jsig .
which runs the checker against all code.jsig file.js
which runs a single filejsig . --optin
which runs the checker against all code, but only files with/* @jsig */
I'd be good to an option to pass:
jsig . --files glob --files glob --files glob
jsigconfig
,{ files: [ glob, glob, glob ] }
This allows for a package to configure the files to be checked like they would configure a linter with the files to lint.
The text was updated successfully, but these errors were encountered: