Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
grunt-jscs-checker
Advanced tools
Task for checking JavaScript Code Style with jscs.
This plugin requires Grunt ~0.4.2
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-jscs-checker --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks("grunt-jscs-checker");
Run this task with the grunt jscs
command.
Task targets, files and options may be specified according to the grunt Configuring tasks guide.
Any specified option will be passed through directly to JSCS, plust this plugin has additional options:
Type: String
Default value: .jscsrc
The path to the jscs configuration file. The JSCS config loader will be used to find this file; for reference, see here.
If both jscs settings and config option are specified, then they will merge together.
jscs: {
src: "path/to/files/*.js",
options: {
config: ".jscs.json",
requireCurlyBraces: [ "if" ]
}
}
Warning: the default value will be changed to null
when grunt-jscs-checker reaches v0.5.0.
Type: Boolean
Default value: false
Set force
to true
to report JSCS errors but not fail the task.
Type: String
Default value: null
Allows you to modify the output. By default it will use a built-in grunt
reporter. Set the path to your own custom reporter or to one of the built-in JSCS reporters.
Type: String
Default value: null
Specify a filepath to output the results of a reporter. If reporterOutput
is specified then all output will be written to the given filepath instead of printed to stdout.
jscs: {
main: [ "path/to/files/*.js" ],
secondary: {
options: {
config: ".jscs-secondary.json",
},
files: {
src: [ "path/to/more/files/**/*.js", "my-plugin.js" ]
}
},
ternary: {
options: {
requireCurlyBraces: [ "if" ]
},
files: {
src: "happy-hippo.js"
}
}
}
FAQs
Grunt task for checking JavaScript Code Style with jscs.
The npm package grunt-jscs-checker receives a total of 1,333 weekly downloads. As such, grunt-jscs-checker popularity was classified as popular.
We found that grunt-jscs-checker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.