symphonyoss/hubot-symphony

View on GitHub
src/symphony.js

Summary

Maintainability
F
3 days
Test Coverage
A
92%

File symphony.js has 407 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 *    Copyright 2017 Jon Freedman
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
Severity: Minor
Found in src/symphony.js - About 5 hrs to fix

    Symphony has 26 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Symphony {
      host: string;
      keyManagerHost: string;
      sessionAuthHost: string;
      agentHost: string;
    Severity: Minor
    Found in src/symphony.js - About 3 hrs to fix

      Line 671 exceeds the maximum line length of 120.
      Open

        _httpRequest<T>(method: string, host: string, path: string, headers: HttpHeaderType, body: ?mixed, formData: ?mixed): Promise<T> {
      Severity: Minor
      Found in src/symphony.js by eslint

      enforce a maximum line length (max-len)

      Very long lines of code in any language can be difficult to read. In order to aid in readability and maintainability many coders have developed a convention to limit lines of code to X number of characters (traditionally 80 characters).

      var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" }, "difficult": "to read" }; // very long

      Rule Details

      This rule enforces a maximum line length to increase code readability and maintainability. The length of a line is defined as the number of Unicode characters in the line.

      Options

      This rule has a number or object option:

      • "code" (default 80) enforces a maximum line length
      • "tabWidth" (default 4) specifies the character width for tab characters
      • "comments" enforces a maximum line length for comments; defaults to value of code
      • "ignorePattern" ignores lines matching a regular expression; can only match a single line and need to be double escaped when written in YAML or JSON
      • "ignoreComments": true ignores all trailing comments and comments on their own line
      • "ignoreTrailingComments": true ignores only trailing comments
      • "ignoreUrls": true ignores lines that contain a URL
      • "ignoreStrings": true ignores lines that contain a double-quoted or single-quoted string
      • "ignoreTemplateLiterals": true ignores lines that contain a template literal
      • "ignoreRegExpLiterals": true ignores lines that contain a RegExp literal

      code

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

      /*eslint max-len: ["error", 80]*/
      
      var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" }, "difficult": "to read" };

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

      /*eslint max-len: ["error", 80]*/
      
      var foo = {
        "bar": "This is a bar.",
        "baz": { "qux": "This is a qux" },
        "easier": "to read"
      };

      tabWidth

      Examples of incorrect code for this rule with the default { "tabWidth": 4 } option:

      /*eslint max-len: ["error", 80, 4]*/
      
      \t  \t  var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" } };

      Examples of correct code for this rule with the default { "tabWidth": 4 } option:

      /*eslint max-len: ["error", 80, 4]*/
      
      \t  \t  var foo = {
      \t  \t  \t  \t  "bar": "This is a bar.",
      \t  \t  \t  \t  "baz": { "qux": "This is a qux" }
      \t  \t  };

      comments

      Examples of incorrect code for this rule with the { "comments": 65 } option:

      /*eslint max-len: ["error", { "comments": 65 }]*/
      
      /**
       * This is a comment that violates the maximum line length we have specified
      **/

      ignoreComments

      Examples of correct code for this rule with the { "ignoreComments": true } option:

      /*eslint max-len: ["error", { "ignoreComments": true }]*/
      
      /**
       * This is a really really really really really really really really really long comment
      **/

      ignoreTrailingComments

      Examples of correct code for this rule with the { "ignoreTrailingComments": true } option:

      /*eslint max-len: ["error", { "ignoreTrailingComments": true }]*/
      
      var foo = 'bar'; // This is a really really really really really really really long comment

      ignoreUrls

      Examples of correct code for this rule with the { "ignoreUrls": true } option:

      /*eslint max-len: ["error", { "ignoreUrls": true }]*/
      
      var url = 'https://www.example.com/really/really/really/really/really/really/really/long';

      ignoreStrings

      Examples of correct code for this rule with the { "ignoreStrings": true } option:

      /*eslint max-len: ["error", { "ignoreStrings": true }]*/
      
      var longString = 'this is a really really really really really long string!';

      ignoreTemplateLiterals

      Examples of correct code for this rule with the { "ignoreTemplateLiterals": true } option:

      /*eslint max-len: ["error", { "ignoreTemplateLiterals": true }]*/
      
      var longTemplateLiteral = `this is a really really really really really long template literal!`;

      ignoreRegExpLiterals

      Examples of correct code for this rule with the { "ignoreRegExpLiterals": true } option:

      /*eslint max-len: ["error", { "ignoreRegExpLiterals": true }]*/
      
      var longRegExpLiteral = /this is a really really really really really long regular expression!/;

      ignorePattern

      Examples of correct code for this rule with the { "ignorePattern": true } option:

      /*eslint max-len: ["error", { "ignorePattern": "^\\s*var\\s.+=\\s*require\\s*\\(/" }]*/
      
      var dep = require('really/really/really/really/really/really/really/really/long/module');

      Related Rules

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

      Line 703 exceeds the maximum line length of 120.
      Open

                logger.debug(`received ${res.statusCode} response from https://${host}${path}: ${JSON.stringify(data) || 'undefined'}`);
      Severity: Minor
      Found in src/symphony.js by eslint

      enforce a maximum line length (max-len)

      Very long lines of code in any language can be difficult to read. In order to aid in readability and maintainability many coders have developed a convention to limit lines of code to X number of characters (traditionally 80 characters).

      var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" }, "difficult": "to read" }; // very long

      Rule Details

      This rule enforces a maximum line length to increase code readability and maintainability. The length of a line is defined as the number of Unicode characters in the line.

      Options

      This rule has a number or object option:

      • "code" (default 80) enforces a maximum line length
      • "tabWidth" (default 4) specifies the character width for tab characters
      • "comments" enforces a maximum line length for comments; defaults to value of code
      • "ignorePattern" ignores lines matching a regular expression; can only match a single line and need to be double escaped when written in YAML or JSON
      • "ignoreComments": true ignores all trailing comments and comments on their own line
      • "ignoreTrailingComments": true ignores only trailing comments
      • "ignoreUrls": true ignores lines that contain a URL
      • "ignoreStrings": true ignores lines that contain a double-quoted or single-quoted string
      • "ignoreTemplateLiterals": true ignores lines that contain a template literal
      • "ignoreRegExpLiterals": true ignores lines that contain a RegExp literal

      code

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

      /*eslint max-len: ["error", 80]*/
      
      var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" }, "difficult": "to read" };

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

      /*eslint max-len: ["error", 80]*/
      
      var foo = {
        "bar": "This is a bar.",
        "baz": { "qux": "This is a qux" },
        "easier": "to read"
      };

      tabWidth

      Examples of incorrect code for this rule with the default { "tabWidth": 4 } option:

      /*eslint max-len: ["error", 80, 4]*/
      
      \t  \t  var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" } };

      Examples of correct code for this rule with the default { "tabWidth": 4 } option:

      /*eslint max-len: ["error", 80, 4]*/
      
      \t  \t  var foo = {
      \t  \t  \t  \t  "bar": "This is a bar.",
      \t  \t  \t  \t  "baz": { "qux": "This is a qux" }
      \t  \t  };

      comments

      Examples of incorrect code for this rule with the { "comments": 65 } option:

      /*eslint max-len: ["error", { "comments": 65 }]*/
      
      /**
       * This is a comment that violates the maximum line length we have specified
      **/

      ignoreComments

      Examples of correct code for this rule with the { "ignoreComments": true } option:

      /*eslint max-len: ["error", { "ignoreComments": true }]*/
      
      /**
       * This is a really really really really really really really really really long comment
      **/

      ignoreTrailingComments

      Examples of correct code for this rule with the { "ignoreTrailingComments": true } option:

      /*eslint max-len: ["error", { "ignoreTrailingComments": true }]*/
      
      var foo = 'bar'; // This is a really really really really really really really long comment

      ignoreUrls

      Examples of correct code for this rule with the { "ignoreUrls": true } option:

      /*eslint max-len: ["error", { "ignoreUrls": true }]*/
      
      var url = 'https://www.example.com/really/really/really/really/really/really/really/long';

      ignoreStrings

      Examples of correct code for this rule with the { "ignoreStrings": true } option:

      /*eslint max-len: ["error", { "ignoreStrings": true }]*/
      
      var longString = 'this is a really really really really really long string!';

      ignoreTemplateLiterals

      Examples of correct code for this rule with the { "ignoreTemplateLiterals": true } option:

      /*eslint max-len: ["error", { "ignoreTemplateLiterals": true }]*/
      
      var longTemplateLiteral = `this is a really really really really really long template literal!`;

      ignoreRegExpLiterals

      Examples of correct code for this rule with the { "ignoreRegExpLiterals": true } option:

      /*eslint max-len: ["error", { "ignoreRegExpLiterals": true }]*/
      
      var longRegExpLiteral = /this is a really really really really really long regular expression!/;

      ignorePattern

      Examples of correct code for this rule with the { "ignorePattern": true } option:

      /*eslint max-len: ["error", { "ignorePattern": "^\\s*var\\s.+=\\s*require\\s*\\(/" }]*/
      
      var dep = require('really/really/really/really/really/really/really/really/long/module');

      Related Rules

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

      Line 699 exceeds the maximum line length of 120.
      Open

                const err = `received ${res.statusCode} response from https://${host}${path}: ${JSON.stringify(data) || 'undefined'}`;
      Severity: Minor
      Found in src/symphony.js by eslint

      enforce a maximum line length (max-len)

      Very long lines of code in any language can be difficult to read. In order to aid in readability and maintainability many coders have developed a convention to limit lines of code to X number of characters (traditionally 80 characters).

      var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" }, "difficult": "to read" }; // very long

      Rule Details

      This rule enforces a maximum line length to increase code readability and maintainability. The length of a line is defined as the number of Unicode characters in the line.

      Options

      This rule has a number or object option:

      • "code" (default 80) enforces a maximum line length
      • "tabWidth" (default 4) specifies the character width for tab characters
      • "comments" enforces a maximum line length for comments; defaults to value of code
      • "ignorePattern" ignores lines matching a regular expression; can only match a single line and need to be double escaped when written in YAML or JSON
      • "ignoreComments": true ignores all trailing comments and comments on their own line
      • "ignoreTrailingComments": true ignores only trailing comments
      • "ignoreUrls": true ignores lines that contain a URL
      • "ignoreStrings": true ignores lines that contain a double-quoted or single-quoted string
      • "ignoreTemplateLiterals": true ignores lines that contain a template literal
      • "ignoreRegExpLiterals": true ignores lines that contain a RegExp literal

      code

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

      /*eslint max-len: ["error", 80]*/
      
      var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" }, "difficult": "to read" };

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

      /*eslint max-len: ["error", 80]*/
      
      var foo = {
        "bar": "This is a bar.",
        "baz": { "qux": "This is a qux" },
        "easier": "to read"
      };

      tabWidth

      Examples of incorrect code for this rule with the default { "tabWidth": 4 } option:

      /*eslint max-len: ["error", 80, 4]*/
      
      \t  \t  var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" } };

      Examples of correct code for this rule with the default { "tabWidth": 4 } option:

      /*eslint max-len: ["error", 80, 4]*/
      
      \t  \t  var foo = {
      \t  \t  \t  \t  "bar": "This is a bar.",
      \t  \t  \t  \t  "baz": { "qux": "This is a qux" }
      \t  \t  };

      comments

      Examples of incorrect code for this rule with the { "comments": 65 } option:

      /*eslint max-len: ["error", { "comments": 65 }]*/
      
      /**
       * This is a comment that violates the maximum line length we have specified
      **/

      ignoreComments

      Examples of correct code for this rule with the { "ignoreComments": true } option:

      /*eslint max-len: ["error", { "ignoreComments": true }]*/
      
      /**
       * This is a really really really really really really really really really long comment
      **/

      ignoreTrailingComments

      Examples of correct code for this rule with the { "ignoreTrailingComments": true } option:

      /*eslint max-len: ["error", { "ignoreTrailingComments": true }]*/
      
      var foo = 'bar'; // This is a really really really really really really really long comment

      ignoreUrls

      Examples of correct code for this rule with the { "ignoreUrls": true } option:

      /*eslint max-len: ["error", { "ignoreUrls": true }]*/
      
      var url = 'https://www.example.com/really/really/really/really/really/really/really/long';

      ignoreStrings

      Examples of correct code for this rule with the { "ignoreStrings": true } option:

      /*eslint max-len: ["error", { "ignoreStrings": true }]*/
      
      var longString = 'this is a really really really really really long string!';

      ignoreTemplateLiterals

      Examples of correct code for this rule with the { "ignoreTemplateLiterals": true } option:

      /*eslint max-len: ["error", { "ignoreTemplateLiterals": true }]*/
      
      var longTemplateLiteral = `this is a really really really really really long template literal!`;

      ignoreRegExpLiterals

      Examples of correct code for this rule with the { "ignoreRegExpLiterals": true } option:

      /*eslint max-len: ["error", { "ignoreRegExpLiterals": true }]*/
      
      var longRegExpLiteral = /this is a really really really really really long regular expression!/;

      ignorePattern

      Examples of correct code for this rule with the { "ignorePattern": true } option:

      /*eslint max-len: ["error", { "ignorePattern": "^\\s*var\\s.+=\\s*require\\s*\\(/" }]*/
      
      var dep = require('really/really/really/really/really/really/really/really/long/module');

      Related Rules

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

      Line 692 exceeds the maximum line length of 120.
      Open

            logger.debug(`sending ${options.method} to https://${host}${path} [body: ${JSON.stringify(options.body) || 'undefined'}] [formData: ${JSON.stringify(options.formData) || 'undefined'}]`);
      Severity: Minor
      Found in src/symphony.js by eslint

      enforce a maximum line length (max-len)

      Very long lines of code in any language can be difficult to read. In order to aid in readability and maintainability many coders have developed a convention to limit lines of code to X number of characters (traditionally 80 characters).

      var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" }, "difficult": "to read" }; // very long

      Rule Details

      This rule enforces a maximum line length to increase code readability and maintainability. The length of a line is defined as the number of Unicode characters in the line.

      Options

      This rule has a number or object option:

      • "code" (default 80) enforces a maximum line length
      • "tabWidth" (default 4) specifies the character width for tab characters
      • "comments" enforces a maximum line length for comments; defaults to value of code
      • "ignorePattern" ignores lines matching a regular expression; can only match a single line and need to be double escaped when written in YAML or JSON
      • "ignoreComments": true ignores all trailing comments and comments on their own line
      • "ignoreTrailingComments": true ignores only trailing comments
      • "ignoreUrls": true ignores lines that contain a URL
      • "ignoreStrings": true ignores lines that contain a double-quoted or single-quoted string
      • "ignoreTemplateLiterals": true ignores lines that contain a template literal
      • "ignoreRegExpLiterals": true ignores lines that contain a RegExp literal

      code

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

      /*eslint max-len: ["error", 80]*/
      
      var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" }, "difficult": "to read" };

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

      /*eslint max-len: ["error", 80]*/
      
      var foo = {
        "bar": "This is a bar.",
        "baz": { "qux": "This is a qux" },
        "easier": "to read"
      };

      tabWidth

      Examples of incorrect code for this rule with the default { "tabWidth": 4 } option:

      /*eslint max-len: ["error", 80, 4]*/
      
      \t  \t  var foo = { "bar": "This is a bar.", "baz": { "qux": "This is a qux" } };

      Examples of correct code for this rule with the default { "tabWidth": 4 } option:

      /*eslint max-len: ["error", 80, 4]*/
      
      \t  \t  var foo = {
      \t  \t  \t  \t  "bar": "This is a bar.",
      \t  \t  \t  \t  "baz": { "qux": "This is a qux" }
      \t  \t  };

      comments

      Examples of incorrect code for this rule with the { "comments": 65 } option:

      /*eslint max-len: ["error", { "comments": 65 }]*/
      
      /**
       * This is a comment that violates the maximum line length we have specified
      **/

      ignoreComments

      Examples of correct code for this rule with the { "ignoreComments": true } option:

      /*eslint max-len: ["error", { "ignoreComments": true }]*/
      
      /**
       * This is a really really really really really really really really really long comment
      **/

      ignoreTrailingComments

      Examples of correct code for this rule with the { "ignoreTrailingComments": true } option:

      /*eslint max-len: ["error", { "ignoreTrailingComments": true }]*/
      
      var foo = 'bar'; // This is a really really really really really really really long comment

      ignoreUrls

      Examples of correct code for this rule with the { "ignoreUrls": true } option:

      /*eslint max-len: ["error", { "ignoreUrls": true }]*/
      
      var url = 'https://www.example.com/really/really/really/really/really/really/really/long';

      ignoreStrings

      Examples of correct code for this rule with the { "ignoreStrings": true } option:

      /*eslint max-len: ["error", { "ignoreStrings": true }]*/
      
      var longString = 'this is a really really really really really long string!';

      ignoreTemplateLiterals

      Examples of correct code for this rule with the { "ignoreTemplateLiterals": true } option:

      /*eslint max-len: ["error", { "ignoreTemplateLiterals": true }]*/
      
      var longTemplateLiteral = `this is a really really really really really long template literal!`;

      ignoreRegExpLiterals

      Examples of correct code for this rule with the { "ignoreRegExpLiterals": true } option:

      /*eslint max-len: ["error", { "ignoreRegExpLiterals": true }]*/
      
      var longRegExpLiteral = /this is a really really really really really long regular expression!/;

      ignorePattern

      Examples of correct code for this rule with the { "ignorePattern": true } option:

      /*eslint max-len: ["error", { "ignorePattern": "^\\s*var\\s.+=\\s*require\\s*\\(/" }]*/
      
      var dep = require('really/really/really/really/really/really/really/really/long/module');

      Related Rules

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

      Function _httpRequest has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        _httpRequest<T>(method: string, host: string, path: string, headers: HttpHeaderType, body: ?mixed, formData: ?mixed): Promise<T> {
          let self = this;
          return new Promise((resolve, reject) => {
            let options = {
              baseUrl: `https://${host}`,
      Severity: Minor
      Found in src/symphony.js - About 1 hr to fix

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

          constructor(args: ConstructorArgsType) {
            this.host = args.host;
            this.keyManagerHost = args.keyManagerHost || args.host;
            this.sessionAuthHost = args.sessionAuthHost || args.host;
            this.agentHost = args.agentHost || args.host;
        Severity: Minor
        Found in src/symphony.js - About 1 hr to fix

          Missing trailing comma.
          Open

                }
          Severity: Minor
          Found in src/symphony.js by eslint

          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/

          Missing trailing comma.
          Open

                }
          Severity: Minor
          Found in src/symphony.js by eslint

          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/

          Missing trailing comma.
          Open

                    contentType: 'text/plain'
          Severity: Minor
          Found in src/symphony.js by eslint

          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/

          Missing trailing comma.
          Open

                    contentType: 'text/plain'
          Severity: Minor
          Found in src/symphony.js by eslint

          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/

          Missing trailing comma.
          Open

                  }
          Severity: Minor
          Found in src/symphony.js by eslint

          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/

          Missing trailing comma.
          Open

                    contentType: 'text/plain'
          Severity: Minor
          Found in src/symphony.js by eslint

          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/

          Missing trailing comma.
          Open

                  }
          Severity: Minor
          Found in src/symphony.js by eslint

          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/

          Missing trailing comma.
          Open

                  }
          Severity: Minor
          Found in src/symphony.js by eslint

          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/

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

            promoteMember(roomId: string, userId: number): Promise<RoomMemberActionType> {
              return this._httpPodPost(`/pod/v1/room/${roomId}/membership/promoteOwner`, {id: userId});
            }
          Severity: Major
          Found in src/symphony.js and 3 other locations - About 1 hr to fix
          src/symphony.js on lines 508..510
          src/symphony.js on lines 521..523
          src/symphony.js on lines 547..549

          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 61.

          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 4 locations. Consider refactoring.
          Open

            removeMember(roomId: string, userId: number): Promise<RoomMemberActionType> {
              return this._httpPodPost(`/pod/v1/room/${roomId}/membership/remove`, {id: userId});
            }
          Severity: Major
          Found in src/symphony.js and 3 other locations - About 1 hr to fix
          src/symphony.js on lines 508..510
          src/symphony.js on lines 534..536
          src/symphony.js on lines 547..549

          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 61.

          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 4 locations. Consider refactoring.
          Open

            addMember(roomId: string, userId: number): Promise<RoomMemberActionType> {
              return this._httpPodPost(`/pod/v1/room/${roomId}/membership/add`, {id: userId});
            }
          Severity: Major
          Found in src/symphony.js and 3 other locations - About 1 hr to fix
          src/symphony.js on lines 521..523
          src/symphony.js on lines 534..536
          src/symphony.js on lines 547..549

          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 61.

          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 4 locations. Consider refactoring.
          Open

            demoteMember(roomId: string, userId: number): Promise<RoomMemberActionType> {
              return this._httpPodPost(`/pod/v1/room/${roomId}/membership/demoteOwner`, {id: userId});
            }
          Severity: Major
          Found in src/symphony.js and 3 other locations - About 1 hr to fix
          src/symphony.js on lines 508..510
          src/symphony.js on lines 521..523
          src/symphony.js on lines 534..536

          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 61.

          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

            getMessages(streamId: string): Promise<Array<SymphonyMessageV2Type>> {
              return this._httpAgentGet(`/agent/v2/stream/${streamId}/message`);
            }
          Severity: Major
          Found in src/symphony.js and 2 other locations - About 1 hr to fix
          src/symphony.js on lines 378..380
          src/symphony.js on lines 495..497

          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 55.

          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

            getMembers(roomId: string): Promise<Array<RoomMembershipType>> {
              return this._httpPodGet(`/pod/v2/room/${roomId}/membership/list`);
            }
          Severity: Major
          Found in src/symphony.js and 2 other locations - About 1 hr to fix
          src/symphony.js on lines 352..354
          src/symphony.js on lines 378..380

          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 55.

          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

            readDatafeed(datafeedId: string): Promise<Array<SymphonyMessageV2Type>> {
              return this._httpAgentGet(`/agent/v2/datafeed/${datafeedId}/read`);
            }
          Severity: Major
          Found in src/symphony.js and 2 other locations - About 1 hr to fix
          src/symphony.js on lines 352..354
          src/symphony.js on lines 495..497

          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 55.

          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

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

              for (const [key, value] of roomInfo.keywords.entries()) {
                body.keywords.push({
                  key: key,
                  value: value,
                });
          Severity: Minor
          Found in src/symphony.js and 1 other location - About 55 mins to fix
          src/symphony.js on lines 465..470

          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 53.

          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

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

              for (const [key, value] of roomInfo.keywords.entries()) {
                body.keywords.push({
                  key: key,
                  value: value,
                });
          Severity: Minor
          Found in src/symphony.js and 1 other location - About 55 mins to fix
          src/symphony.js on lines 420..425

          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 53.

          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 (args.userId !== undefined && args.userId !== null) {
                return this._httpPodGet(`/pod/v2/user?uid=${args.userId}&local=true`);
              }
          Severity: Major
          Found in src/symphony.js and 2 other locations - About 50 mins to fix
          src/symphony.js on lines 285..287
          src/symphony.js on lines 288..290

          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 51.

          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 (args.emailAddress !== undefined && args.emailAddress !== null) {
                return this._httpPodGet(`/pod/v2/user?email=${args.emailAddress}&local=true`);
              }
          Severity: Major
          Found in src/symphony.js and 2 other locations - About 50 mins to fix
          src/symphony.js on lines 282..284
          src/symphony.js on lines 285..287

          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 51.

          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 (args.username !== undefined && args.username !== null) {
                return this._httpPodGet(`/pod/v2/user?username=${args.username}&local=true`);
              }
          Severity: Major
          Found in src/symphony.js and 2 other locations - About 50 mins to fix
          src/symphony.js on lines 282..284
          src/symphony.js on lines 288..290

          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 51.

          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

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

              const getFeature = function(feature: string): boolean {
                if (roomInfo.features) {
                  return roomInfo.features[feature] || false;
                }
                return false;
          Severity: Minor
          Found in src/symphony.js and 1 other location - About 45 mins to fix
          src/symphony.js on lines 404..409

          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 50.

          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

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

              const getFeature = function(feature: string): boolean {
                if (roomInfo.features) {
                  return roomInfo.features[feature] || false;
                }
                return false;
          Severity: Minor
          Found in src/symphony.js and 1 other location - About 45 mins to fix
          src/symphony.js on lines 451..456

          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 50.

          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

          There are no issues that match your filters.

          Category
          Status