mihnsen/ui-carousel

View on GitHub

Showing 15 of 15 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

module.exports = function(config) {
  config.set({

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '',
Severity: Major
Found in karma-dist-concatenated.conf.js and 1 other location - About 5 hrs to fix
karma-dist-minified.conf.js on lines 4..73

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 149.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

module.exports = function(config) {
  config.set({

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '',
Severity: Major
Found in karma-dist-minified.conf.js and 1 other location - About 5 hrs to fix
karma-dist-concatenated.conf.js on lines 4..73

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 149.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

File carousel.controller.js has 380 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * angular-ui-carousel
 * for example:
 * length = 8, show = 4, scroll = 3, current = 0
 *          ---------
Severity: Minor
Found in src/ui-carousel/controllers/carousel.controller.js - About 5 hrs to fix

    Function slideHandler has 75 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        this.slideHandler = (index) => {
          // TODO prevent when slides not exists
          if (!this.slides) {
            return $q.reject('Carousel not fully setup');
          }
    Severity: Major
    Found in src/ui-carousel/controllers/carousel.controller.js - About 3 hrs to fix

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

          this.initOptions = () => {
            this.options = angular.extend({}, Carousel.getOptions());
      
            // TODO customize attribute from directive
            if (this.initialSlide !== undefined) {
      Severity: Minor
      Found in src/ui-carousel/controllers/carousel.controller.js - About 1 hr to fix

        Arrow function has too many statements (31). Maximum allowed is 30.
        Open

            this.slideHandler = (index) => {

        enforce a maximum number of statements allowed in function blocks (max-statements)

        The max-statements rule allows you to specify the maximum number of statements allowed in a function.

        function foo() {
          var bar = 1; // one statement
          var baz = 2; // two statements
          var qux = 3; // three statements
        }

        Rule Details

        This rule enforces a maximum number of statements allowed in function blocks.

        Options

        This rule has a number or object option:

        • "max" (default 10) enforces a maximum number of statements allows in function blocks

        Deprecated: The object property maximum is deprecated; please use the object property max instead.

        This rule has an object option:

        • "ignoreTopLevelFunctions": true ignores top-level functions

        max

        Examples of incorrect code for this rule with the default { "max": 10 } option:

        /*eslint max-statements: ["error", 10]*/
        /*eslint-env es6*/
        
        function foo() {
          var foo1 = 1;
          var foo2 = 2;
          var foo3 = 3;
          var foo4 = 4;
          var foo5 = 5;
          var foo6 = 6;
          var foo7 = 7;
          var foo8 = 8;
          var foo9 = 9;
          var foo10 = 10;
        
          var foo11 = 11; // Too many.
        }
        
        let foo = () => {
          var foo1 = 1;
          var foo2 = 2;
          var foo3 = 3;
          var foo4 = 4;
          var foo5 = 5;
          var foo6 = 6;
          var foo7 = 7;
          var foo8 = 8;
          var foo9 = 9;
          var foo10 = 10;
        
          var foo11 = 11; // Too many.
        };

        Examples of correct code for this rule with the default { "max": 10 } option:

        /*eslint max-statements: ["error", 10]*/
        /*eslint-env es6*/
        
        function foo() {
          var foo1 = 1;
          var foo2 = 2;
          var foo3 = 3;
          var foo4 = 4;
          var foo5 = 5;
          var foo6 = 6;
          var foo7 = 7;
          var foo8 = 8;
          var foo9 = 9;
          var foo10 = 10;
          return function () {
        
            // The number of statements in the inner function does not count toward the
            // statement maximum.
        
            return 42;
          };
        }
        
        let foo = () => {
          var foo1 = 1;
          var foo2 = 2;
          var foo3 = 3;
          var foo4 = 4;
          var foo5 = 5;
          var foo6 = 6;
          var foo7 = 7;
          var foo8 = 8;
          var foo9 = 9;
          var foo10 = 10;
          return function () {
        
            // The number of statements in the inner function does not count toward the
            // statement maximum.
        
            return 42;
          };
        }

        ignoreTopLevelFunctions

        Examples of additional correct code for this rule with the { "max": 10 }, { "ignoreTopLevelFunctions": true } options:

        /*eslint max-statements: ["error", 10, { "ignoreTopLevelFunctions": true }]*/
        
        function foo() {
          var foo1 = 1;
          var foo2 = 2;
          var foo3 = 3;
          var foo4 = 4;
          var foo5 = 5;
          var foo6 = 6;
          var foo7 = 7;
          var foo8 = 8;
          var foo9 = 9;
          var foo10 = 10;
          var foo11 = 11;
        }

        Related Rules

        • [complexity](complexity.md)
        • [max-depth](max-depth.md)
        • [max-len](max-len.md)
        • [max-nested-callbacks](max-nested-callbacks.md)
        • [max-params](max-params.md) Source: http://eslint.org/docs/rules/

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

        module.exports = function(config) {
          config.set({
        
            // base path that will be used to resolve all patterns (eg. files, exclude)
            basePath: '',
        Severity: Minor
        Found in karma-src.conf.js - About 1 hr to fix

          Function setProps has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              this.setProps = () => {
                const bodyStyle = document.body.style;
          
                /* eslint-disable */
                if (bodyStyle.OTransform !== undefined) {
          Severity: Minor
          Found in src/ui-carousel/controllers/carousel.controller.js - About 1 hr to fix

            Similar blocks of code found in 3 locations. Consider refactoring.
            Open

                  if (bodyStyle.msTransform !== undefined) {
                    this.animType = 'msTransform';
                    this.transformType = '-ms-transform';
                    this.transitionType = 'msTransition';
                  }
            Severity: Minor
            Found in src/ui-carousel/controllers/carousel.controller.js and 2 other locations - About 40 mins to fix
            src/ui-carousel/controllers/carousel.controller.js on lines 534..538
            src/ui-carousel/controllers/carousel.controller.js on lines 539..543

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 48.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 3 locations. Consider refactoring.
            Open

                  if (bodyStyle.MozTransform !== undefined) {
                    this.animType = 'MozTransform';
                    this.transformType = '-moz-transform';
                    this.transitionType = 'MozTransition';
                  }
            Severity: Minor
            Found in src/ui-carousel/controllers/carousel.controller.js and 2 other locations - About 40 mins to fix
            src/ui-carousel/controllers/carousel.controller.js on lines 539..543
            src/ui-carousel/controllers/carousel.controller.js on lines 544..548

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 48.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 3 locations. Consider refactoring.
            Open

                  if (bodyStyle.webkitTransform !== undefined) {
                    this.animType = 'webkitTransform';
                    this.transformType = '-webkit-transform';
                    this.transitionType = 'webkitTransition';
                  }
            Severity: Minor
            Found in src/ui-carousel/controllers/carousel.controller.js and 2 other locations - About 40 mins to fix
            src/ui-carousel/controllers/carousel.controller.js on lines 534..538
            src/ui-carousel/controllers/carousel.controller.js on lines 544..548

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 48.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Avoid too many return statements within this function.
            Open

                  return this
                    .moveTrack(left)
                    .then(() => {
                      this.isTrackMoving = false;
                      this.currentSlide = target;
            Severity: Major
            Found in src/ui-carousel/controllers/carousel.controller.js - About 30 mins to fix

              Move the invocation into the parens that contain the function.
              Open

              (function (angular) {
              Severity: Minor
              Found in src/ui-carousel/uiCarousel.module.js by eslint

              Require IIFEs to be Wrapped (wrap-iife)

              You can immediately invoke function expressions, but not function declarations. A common technique to create an immediately-invoked function expression (IIFE) is to wrap a function declaration in parentheses. The opening parentheses causes the contained function to be parsed as an expression, rather than a declaration.

              // function expression could be unwrapped
              var x = function () { return { y: 1 };}();
              
              // function declaration must be wrapped
              function () { /* side effects */ }(); // SyntaxError

              Rule Details

              This rule requires all immediately-invoked function expressions to be wrapped in parentheses.

              Options

              This rule has two options, a string option and an object option.

              String option:

              • "outside" enforces always wrapping the call expression. The default is "outside".
              • "inside" enforces always wrapping the function expression.
              • "any" enforces always wrapping, but allows either style.

              Object option:

              • "functionPrototypeMethods": true additionally enforces wrapping function expressions invoked using .call and .apply. The default is false.

              outside

              Examples of incorrect code for the default "outside" option:

              /*eslint wrap-iife: ["error", "outside"]*/
              
              var x = function () { return { y: 1 };}(); // unwrapped
              var x = (function () { return { y: 1 };})(); // wrapped function expression

              Examples of correct code for the default "outside" option:

              /*eslint wrap-iife: ["error", "outside"]*/
              
              var x = (function () { return { y: 1 };}()); // wrapped call expression

              inside

              Examples of incorrect code for the "inside" option:

              /*eslint wrap-iife: ["error", "inside"]*/
              
              var x = function () { return { y: 1 };}(); // unwrapped
              var x = (function () { return { y: 1 };}()); // wrapped call expression

              Examples of correct code for the "inside" option:

              /*eslint wrap-iife: ["error", "inside"]*/
              
              var x = (function () { return { y: 1 };})(); // wrapped function expression

              any

              Examples of incorrect code for the "any" option:

              /*eslint wrap-iife: ["error", "any"]*/
              
              var x = function () { return { y: 1 };}(); // unwrapped

              Examples of correct code for the "any" option:

              /*eslint wrap-iife: ["error", "any"]*/
              
              var x = (function () { return { y: 1 };}()); // wrapped call expression
              var x = (function () { return { y: 1 };})(); // wrapped function expression

              functionPrototypeMethods

              Examples of incorrect code for this rule with the "inside", { "functionPrototypeMethods": true } options:

              /* eslint wrap-iife: [2, "inside", { functionPrototypeMethods: true }] */
              
              var x = function(){ foo(); }()
              var x = (function(){ foo(); }())
              var x = function(){ foo(); }.call(bar)
              var x = (function(){ foo(); }.call(bar))

              Examples of correct code for this rule with the "inside", { "functionPrototypeMethods": true } options:

              /* eslint wrap-iife: [2, "inside", { functionPrototypeMethods: true }] */
              
              var x = (function(){ foo(); })()
              var x = (function(){ foo(); }).call(bar)

              Source: http://eslint.org/docs/rules/

              Unexpected trailing comma.
              Open

                        'carousel-next': '.carousel-next',

              require or disallow trailing commas (comma-dangle)

              Trailing commas in object literals are valid according to the ECMAScript 5 (and ECMAScript 3!) spec. However, IE8 (when not in IE8 document mode) and below will throw an error when it encounters trailing commas in JavaScript.

              var foo = {
                  bar: "baz",
                  qux: "quux",
              };

              Trailing commas simplify adding and removing items to objects and arrays, since only the lines you are modifying must be touched. Another argument in favor of trailing commas is that it improves the clarity of diffs when an item is added or removed from an object or array:

              Less clear:

              var foo = {
              -    bar: "baz",
              -    qux: "quux"
              +    bar: "baz"
               };

              More clear:

              var foo = {
                   bar: "baz",
              -    qux: "quux",
               };

              Rule Details

              This rule enforces consistent use of trailing commas in object and array literals.

              Options

              This rule has a string option or an object option:

              {
                  "comma-dangle": ["error", "never"],
                  // or
                  "comma-dangle": ["error", {
                      "arrays": "never",
                      "objects": "never",
                      "imports": "never",
                      "exports": "never",
                      "functions": "ignore",
                  }]
              }
              • "never" (default) disallows trailing commas
              • "always" requires trailing commas
              • "always-multiline" requires trailing commas when the last element or property is in a different line than the closing ] or } and disallows trailing commas when the last element or property is on the same line as the closing ] or }
              • "only-multiline" allows (but does not require) trailing commas when the last element or property is in a different line than the closing ] or } and disallows trailing commas when the last element or property is on the same line as the closing ] or }

              Trailing commas in function declarations and function calls are valid syntax since ECMAScript 2017; however, the string option does not check these situations for backwards compatibility.

              You can also use an object option to configure this rule for each type of syntax. Each of the following options can be set to "never", "always", "always-multiline", "only-multiline", or "ignore". The default for each option is "never" unless otherwise specified.

              • arrays is for array literals and array patterns of destructuring. (e.g. let [a,] = [1,];)
              • objects is for object literals and object patterns of destructuring. (e.g. let {a,} = {a: 1};)
              • imports is for import declarations of ES Modules. (e.g. import {a,} from "foo";)
              • exports is for export declarations of ES Modules. (e.g. export {a,};)
              • functions is for function declarations and function calls. (e.g. (function(a,){ })(b,);)
                functions is set to "ignore" by default for consistency with the string option.

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint comma-dangle: ["error", "never"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux",
              };
              
              var arr = [1,2,];
              
              foo({
                bar: "baz",
                qux: "quux",
              });

              Examples of correct code for this rule with the default "never" option:

              /*eslint comma-dangle: ["error", "never"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux"
              };
              
              var arr = [1,2];
              
              foo({
                bar: "baz",
                qux: "quux"
              });

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint comma-dangle: ["error", "always"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux"
              };
              
              var arr = [1,2];
              
              foo({
                bar: "baz",
                qux: "quux"
              });

              Examples of correct code for this rule with the "always" option:

              /*eslint comma-dangle: ["error", "always"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux",
              };
              
              var arr = [1,2,];
              
              foo({
                bar: "baz",
                qux: "quux",
              });

              always-multiline

              Examples of incorrect code for this rule with the "always-multiline" option:

              /*eslint comma-dangle: ["error", "always-multiline"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux"
              };
              
              var foo = { bar: "baz", qux: "quux", };
              
              var arr = [1,2,];
              
              var arr = [1,
                  2,];
              
              var arr = [
                  1,
                  2
              ];
              
              foo({
                bar: "baz",
                qux: "quux"
              });

              Examples of correct code for this rule with the "always-multiline" option:

              /*eslint comma-dangle: ["error", "always-multiline"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux",
              };
              
              var foo = {bar: "baz", qux: "quux"};
              var arr = [1,2];
              
              var arr = [1,
                  2];
              
              var arr = [
                  1,
                  2,
              ];
              
              foo({
                bar: "baz",
                qux: "quux",
              });

              only-multiline

              Examples of incorrect code for this rule with the "only-multiline" option:

              /*eslint comma-dangle: ["error", "only-multiline"]*/
              
              var foo = { bar: "baz", qux: "quux", };
              
              var arr = [1,2,];
              
              var arr = [1,
                  2,];

              Examples of correct code for this rule with the "only-multiline" option:

              /*eslint comma-dangle: ["error", "only-multiline"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux",
              };
              
              var foo = {
                  bar: "baz",
                  qux: "quux"
              };
              
              var foo = {bar: "baz", qux: "quux"};
              var arr = [1,2];
              
              var arr = [1,
                  2];
              
              var arr = [
                  1,
                  2,
              ];
              
              var arr = [
                  1,
                  2
              ];
              
              foo({
                bar: "baz",
                qux: "quux",
              });
              
              foo({
                bar: "baz",
                qux: "quux"
              });

              functions

              Examples of incorrect code for this rule with the {"functions": "never"} option:

              /*eslint comma-dangle: ["error", {"functions": "never"}]*/
              
              function foo(a, b,) {
              }
              
              foo(a, b,);
              new foo(a, b,);

              Examples of correct code for this rule with the {"functions": "never"} option:

              /*eslint comma-dangle: ["error", {"functions": "never"}]*/
              
              function foo(a, b) {
              }
              
              foo(a, b);
              new foo(a, b);

              Examples of incorrect code for this rule with the {"functions": "always"} option:

              /*eslint comma-dangle: ["error", {"functions": "always"}]*/
              
              function foo(a, b) {
              }
              
              foo(a, b);
              new foo(a, b);

              Examples of correct code for this rule with the {"functions": "always"} option:

              /*eslint comma-dangle: ["error", {"functions": "always"}]*/
              
              function foo(a, b,) {
              }
              
              foo(a, b,);
              new foo(a, b,);

              When Not To Use It

              You can turn this rule off if you are not concerned with dangling commas. Source: http://eslint.org/docs/rules/

              Unexpected trailing comma.
              Open

                      onInit: '&',

              require or disallow trailing commas (comma-dangle)

              Trailing commas in object literals are valid according to the ECMAScript 5 (and ECMAScript 3!) spec. However, IE8 (when not in IE8 document mode) and below will throw an error when it encounters trailing commas in JavaScript.

              var foo = {
                  bar: "baz",
                  qux: "quux",
              };

              Trailing commas simplify adding and removing items to objects and arrays, since only the lines you are modifying must be touched. Another argument in favor of trailing commas is that it improves the clarity of diffs when an item is added or removed from an object or array:

              Less clear:

              var foo = {
              -    bar: "baz",
              -    qux: "quux"
              +    bar: "baz"
               };

              More clear:

              var foo = {
                   bar: "baz",
              -    qux: "quux",
               };

              Rule Details

              This rule enforces consistent use of trailing commas in object and array literals.

              Options

              This rule has a string option or an object option:

              {
                  "comma-dangle": ["error", "never"],
                  // or
                  "comma-dangle": ["error", {
                      "arrays": "never",
                      "objects": "never",
                      "imports": "never",
                      "exports": "never",
                      "functions": "ignore",
                  }]
              }
              • "never" (default) disallows trailing commas
              • "always" requires trailing commas
              • "always-multiline" requires trailing commas when the last element or property is in a different line than the closing ] or } and disallows trailing commas when the last element or property is on the same line as the closing ] or }
              • "only-multiline" allows (but does not require) trailing commas when the last element or property is in a different line than the closing ] or } and disallows trailing commas when the last element or property is on the same line as the closing ] or }

              Trailing commas in function declarations and function calls are valid syntax since ECMAScript 2017; however, the string option does not check these situations for backwards compatibility.

              You can also use an object option to configure this rule for each type of syntax. Each of the following options can be set to "never", "always", "always-multiline", "only-multiline", or "ignore". The default for each option is "never" unless otherwise specified.

              • arrays is for array literals and array patterns of destructuring. (e.g. let [a,] = [1,];)
              • objects is for object literals and object patterns of destructuring. (e.g. let {a,} = {a: 1};)
              • imports is for import declarations of ES Modules. (e.g. import {a,} from "foo";)
              • exports is for export declarations of ES Modules. (e.g. export {a,};)
              • functions is for function declarations and function calls. (e.g. (function(a,){ })(b,);)
                functions is set to "ignore" by default for consistency with the string option.

              never

              Examples of incorrect code for this rule with the default "never" option:

              /*eslint comma-dangle: ["error", "never"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux",
              };
              
              var arr = [1,2,];
              
              foo({
                bar: "baz",
                qux: "quux",
              });

              Examples of correct code for this rule with the default "never" option:

              /*eslint comma-dangle: ["error", "never"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux"
              };
              
              var arr = [1,2];
              
              foo({
                bar: "baz",
                qux: "quux"
              });

              always

              Examples of incorrect code for this rule with the "always" option:

              /*eslint comma-dangle: ["error", "always"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux"
              };
              
              var arr = [1,2];
              
              foo({
                bar: "baz",
                qux: "quux"
              });

              Examples of correct code for this rule with the "always" option:

              /*eslint comma-dangle: ["error", "always"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux",
              };
              
              var arr = [1,2,];
              
              foo({
                bar: "baz",
                qux: "quux",
              });

              always-multiline

              Examples of incorrect code for this rule with the "always-multiline" option:

              /*eslint comma-dangle: ["error", "always-multiline"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux"
              };
              
              var foo = { bar: "baz", qux: "quux", };
              
              var arr = [1,2,];
              
              var arr = [1,
                  2,];
              
              var arr = [
                  1,
                  2
              ];
              
              foo({
                bar: "baz",
                qux: "quux"
              });

              Examples of correct code for this rule with the "always-multiline" option:

              /*eslint comma-dangle: ["error", "always-multiline"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux",
              };
              
              var foo = {bar: "baz", qux: "quux"};
              var arr = [1,2];
              
              var arr = [1,
                  2];
              
              var arr = [
                  1,
                  2,
              ];
              
              foo({
                bar: "baz",
                qux: "quux",
              });

              only-multiline

              Examples of incorrect code for this rule with the "only-multiline" option:

              /*eslint comma-dangle: ["error", "only-multiline"]*/
              
              var foo = { bar: "baz", qux: "quux", };
              
              var arr = [1,2,];
              
              var arr = [1,
                  2,];

              Examples of correct code for this rule with the "only-multiline" option:

              /*eslint comma-dangle: ["error", "only-multiline"]*/
              
              var foo = {
                  bar: "baz",
                  qux: "quux",
              };
              
              var foo = {
                  bar: "baz",
                  qux: "quux"
              };
              
              var foo = {bar: "baz", qux: "quux"};
              var arr = [1,2];
              
              var arr = [1,
                  2];
              
              var arr = [
                  1,
                  2,
              ];
              
              var arr = [
                  1,
                  2
              ];
              
              foo({
                bar: "baz",
                qux: "quux",
              });
              
              foo({
                bar: "baz",
                qux: "quux"
              });

              functions

              Examples of incorrect code for this rule with the {"functions": "never"} option:

              /*eslint comma-dangle: ["error", {"functions": "never"}]*/
              
              function foo(a, b,) {
              }
              
              foo(a, b,);
              new foo(a, b,);

              Examples of correct code for this rule with the {"functions": "never"} option:

              /*eslint comma-dangle: ["error", {"functions": "never"}]*/
              
              function foo(a, b) {
              }
              
              foo(a, b);
              new foo(a, b);

              Examples of incorrect code for this rule with the {"functions": "always"} option:

              /*eslint comma-dangle: ["error", {"functions": "always"}]*/
              
              function foo(a, b) {
              }
              
              foo(a, b);
              new foo(a, b);

              Examples of correct code for this rule with the {"functions": "always"} option:

              /*eslint comma-dangle: ["error", {"functions": "always"}]*/
              
              function foo(a, b,) {
              }
              
              foo(a, b,);
              new foo(a, b,);

              When Not To Use It

              You can turn this rule off if you are not concerned with dangling commas. Source: http://eslint.org/docs/rules/

              Severity
              Category
              Status
              Source
              Language