paazmaya/grunt-togeojson

View on GitHub

Showing 6 of 6 total issues

Function gruntTogeojson has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
Open

module.exports = function gruntTogeojson(grunt) {

  grunt.registerMultiTask('togeojson', 'Convert KML and GPX files to GeoJSON and TopoJSON', function register() {

    const options = this.options({
Severity: Minor
Found in tasks/togeojson.js - About 4 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function gruntTogeojson has 57 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function gruntTogeojson(grunt) {

  grunt.registerMultiTask('togeojson', 'Convert KML and GPX files to GeoJSON and TopoJSON', function register() {

    const options = this.options({
Severity: Major
Found in tasks/togeojson.js - About 2 hrs to fix

    Function register has 55 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      grunt.registerMultiTask('togeojson', 'Convert KML and GPX files to GeoJSON and TopoJSON', function register() {
    
        const options = this.options({
          input: 'auto',
          output: 'geojson',
    Severity: Major
    Found in tasks/togeojson.js - About 2 hrs to fix

      Function gruntConf has 46 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      module.exports = function gruntConf(grunt) {
        require('time-grunt')(grunt); // Must be first item
      
        // Project configuration.
        grunt.initConfig({
      Severity: Minor
      Found in Gruntfile.js - About 1 hr to fix

        Function filesEach has 45 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            this.files.forEach(function filesEach(file) {
              let method = 'kml';
        
              file.src.forEach(function srcEach(src) {
        
        
        Severity: Minor
        Found in tasks/togeojson.js - About 1 hr to fix

          Function srcEach has 42 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                file.src.forEach(function srcEach(src) {
          
                  if (options.input === 'auto') {
                    method = src.match(/\.gpx$/iu) ?
                      'gpx' :
          Severity: Minor
          Found in tasks/togeojson.js - About 1 hr to fix
            Severity
            Category
            Status
            Source
            Language