Code complexity module for Grunt using escomplex.
npm install grunt-escomplex> Code complexity module Grunt using escomplex.
Not usable yet...
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:
``shell`
npm install grunt-escomplex --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
`js`
grunt.loadNpmTasks('grunt-escomplex');
to the data object passed into grunt.initConfig().`js
grunt.initConfig({
escomplex: {
options: {
complexity: {
logicalor: true,
switchcase: true,
forin: false,
trycatch: false,
newmi: true
},
format: {
showFunctionDetails: false
}
},
src: [
'specificFile.js',
'src/*/.js'
]
},
})
`$3
options.complexity is an optional object containing properties that modify some of the complexity calculations:####
options.complexity.logicalor:
Boolean indicating whether operator ||
should be considered a source of cyclomatic complexity,
defaults to true.
#### options.complexity.switchcase:
Boolean indicating whether switch statements
should be considered a source of cyclomatic complexity,
defaults to true.
#### options.complexity.forin:
Boolean indicating whether for...in loops
should be considered a source of cyclomatic complexity,
defaults to false.
#### options.complexity.trycatch:
Boolean indicating whether catch clauses
should be considered a source of cyclomatic complexity,
defaults to false.
#### options.complexity.newmi:
Boolean indicating whether the maintainability
index should be rebased on a scale from 0 to 100,
defaults to false.$3
options.format is an optional object containing properties that modify some of the output format:####
options.format.showFunctionDetails: Boolean indicating whether complexity details should be displayed in output result$3
#### Default Options
In this example, the default options are used to do something with whatever. So if the
testing file has the content Testing and the 123 file had the content 1 2 3, the generated result would be Testing, 1 2 3.`js
grunt.initConfig({
escomplex: {
options: {
complexity: {
logicalor: true,
switchcase: true,
forin: false,
trycatch: false,
newmi: true
},
format: {
showFunctionDetails: false
}
},
src: [
'specificFile.js',
'src/*/.js'
]
},
})
``