aslansky/css-sprite

View on GitHub

Showing 7 of 13 total issues

Function exports has 196 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function (opt) {
  opt = lodash.extend({}, {name: 'sprite', format: 'png', margin: 4, processor: 'css', cssPath: '../images', orientation: 'vertical', sort: true, interpolation: 'grid'}, opt);
  opt.styleExtension = (opt.processor === 'stylus') ? 'styl' : opt.processor;
  var layoutOrientation = opt.orientation === 'vertical' ? 'top-down' : opt.orientation === 'horizontal' ? 'left-right' : 'binary-tree';
  var layer = layout(layoutOrientation, {'sort': opt.sort});
Severity: Major
Found in lib/css-sprite.js - About 7 hrs to fix

    Function exports has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    module.exports = function (opt) {
      opt = lodash.extend({}, {name: 'sprite', format: 'png', margin: 4, processor: 'css', cssPath: '../images', orientation: 'vertical', sort: true, interpolation: 'grid'}, opt);
      opt.styleExtension = (opt.processor === 'stylus') ? 'styl' : opt.processor;
      var layoutOrientation = opt.orientation === 'vertical' ? 'top-down' : opt.orientation === 'horizontal' ? 'left-right' : 'binary-tree';
      var layer = layout(layoutOrientation, {'sort': opt.sort});
    Severity: Minor
    Found in lib/css-sprite.js - About 3 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 createSprite has 85 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      function createSprite (cb) {
        var _this = this;
        var layerInfo = layer.export();
        var sprite, nonRetinaSprite, style;
        if (layerInfo.items.length === 0) {
    Severity: Major
    Found in lib/css-sprite.js - About 3 hrs to fix

      Function createStyle has 40 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function createStyle (layerInfo, sprite, retinaSprite) {
          var sprites = [];
          lodash.forEach(layerInfo.items, function (sprite) {
            sprites.push({
              'name': sprite.meta.name,
      Severity: Minor
      Found in lib/css-sprite.js - About 1 hr to fix

        Function cssTemplate has 35 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function cssTemplate (params) {
          // Localize parameters
          var items = params.items;
          var options = params.options;
          var tmplParams = {
        Severity: Minor
        Found in lib/templates/sprite.js - About 1 hr to fix

          Function exports has 28 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          module.exports = function(grunt) {
          
            grunt.registerMultiTask('css_sprite', 'Grunt task for generating css sprites images and corresponding stylesheets.', function () {
              // Merge task-specific and/or target-specific options with these defaults.
              var options = this.options({
          Severity: Minor
          Found in tasks/css_sprite.js - About 1 hr to fix

            Function cssTemplate has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            function cssTemplate (params) {
              // Localize parameters
              var items = params.items;
              var options = params.options;
              var tmplParams = {
            Severity: Minor
            Found in lib/templates/sprite.js - About 45 mins 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

            Severity
            Category
            Status
            Source
            Language