paradite/gitviz

View on GitHub
models/user.js

Summary

Maintainability
B
5 hrs
Test Coverage

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

module.exports.login = function (req, email, password, done) {
  var params = {
    "TableName": tableName,
    "IndexName": "email-index",
    "KeyConditions": {
Severity: Minor
Found in models/user.js - About 1 hr to fix

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

    module.exports.subscribe = function (emails, user) {
      console.log("user email: ", user.email.S);
      var params = {
        "TableName": tableName,
        "IndexName": "email-index",
    Severity: Minor
    Found in models/user.js - About 1 hr to fix

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

      module.exports.createUser = function (req, email, password, done) {
        var params = {
          "TableName": tableName,
          "IndexName": "email-index",
          "KeyConditions": {
      Severity: Minor
      Found in models/user.js - About 1 hr to fix

        Multiple spaces found before '='.
        Open

        var bcrypt   = require('bcrypt-nodejs');
        Severity: Minor
        Found in models/user.js by eslint

        Disallow multiple spaces (no-multi-spaces)

        Multiple spaces in a row that are not used for indentation are typically mistakes. For example:

        if(foo  === "bar") {}

        It's hard to tell, but there are two spaces between foo and ===. Multiple spaces such as this are generally frowned upon in favor of single spaces:

        if(foo === "bar") {}

        Rule Details

        This rule aims to disallow multiple whitespace around logical expressions, conditional expressions, declarations, array elements, object properties, sequences and function parameters.

        Examples of incorrect code for this rule:

        /*eslint no-multi-spaces: "error"*/
        
        var a =  1;
        
        if(foo   === "bar") {}
        
        a <<  b
        
        var arr = [1,  2];
        
        a ?  b: c

        Examples of correct code for this rule:

        /*eslint no-multi-spaces: "error"*/
        
        var a = 1;
        
        if(foo === "bar") {}
        
        a << b
        
        var arr = [1, 2];
        
        a ? b: c

        Options

        To avoid contradictions if some other rules require multiple spaces, this rule has an option to ignore certain node types in the abstract syntax tree (AST) of JavaScript code.

        exceptions

        The exceptions object expects property names to be AST node types as defined by ESTree. The easiest way to determine the node types for exceptions is to use the online demo.

        Only the Property node type is ignored by default, because for the [key-spacing](key-spacing.md) rule some alignment options require multiple spaces in properties of object literals.

        Examples of correct code for the default "exceptions": { "Property": true } option:

        /*eslint no-multi-spaces: "error"*/
        /*eslint key-spacing: ["error", { align: "value" }]*/
        
        var obj = {
            first:  "first",
            second: "second"
        };

        Examples of incorrect code for the "exceptions": { "Property": false } option:

        /*eslint no-multi-spaces: ["error", { exceptions: { "Property": false } }]*/
        /*eslint key-spacing: ["error", { align: "value" }]*/
        
        var obj = {
            first:  "first",
            second: "second"
        };

        Examples of correct code for the "exceptions": { "BinaryExpression": true } option:

        /*eslint no-multi-spaces: ["error", { exceptions: { "BinaryExpression": true } }]*/
        
        var a = 1  *  2;

        Examples of correct code for the "exceptions": { "VariableDeclarator": true } option:

        /*eslint no-multi-spaces: ["error", { exceptions: { "VariableDeclarator": true } }]*/
        
        var someVar      = 'foo';
        var someOtherVar = 'barBaz';

        Examples of correct code for the "exceptions": { "ImportDeclaration": true } option:

        /*eslint no-multi-spaces: ["error", { exceptions: { "ImportDeclaration": true } }]*/
        
        import mod          from 'mod';
        import someOtherMod from 'some-other-mod';

        When Not To Use It

        If you don't want to check and disallow multiple spaces, then you should turn this rule off.

        Related Rules

        • [key-spacing](key-spacing.md)
        • [space-infix-ops](space-infix-ops.md)
        • [space-in-brackets](space-in-brackets.md) (deprecated)
        • [space-in-parens](space-in-parens.md)
        • [space-after-keywords](space-after-keywords)
        • [space-unary-ops](space-unary-ops)
        • [space-return-throw-case](space-return-throw-case) Source: http://eslint.org/docs/rules/

        Expected '===' and instead saw '=='.
        Open

            if (data.Items.length == 0) {
        Severity: Minor
        Found in models/user.js by eslint

        Require === and !== (eqeqeq)

        It is considered good practice to use the type-safe equality operators === and !== instead of their regular counterparts == and !=.

        The reason for this is that == and != do type coercion which follows the rather obscure Abstract Equality Comparison Algorithm. For instance, the following statements are all considered true:

        • [] == false
        • [] == ![]
        • 3 == "03"

        If one of those occurs in an innocent-looking statement such as a == b the actual problem is very difficult to spot.

        Rule Details

        This rule is aimed at eliminating the type-unsafe equality operators.

        Examples of incorrect code for this rule:

        /*eslint eqeqeq: "error"*/
        
        if (x == 42) { }
        
        if ("" == text) { }
        
        if (obj.getStuff() != undefined) { }

        The --fix option on the command line automatically fixes some problems reported by this rule. A problem is only fixed if one of the operands is a typeof expression, or if both operands are literals with the same type.

        Options

        always

        The "always" option (default) enforces the use of === and !== in every situation (except when you opt-in to more specific handling of null [see below]).

        Examples of incorrect code for the "always" option:

        /*eslint eqeqeq: ["error", "always"]*/
        
        a == b
        foo == true
        bananas != 1
        value == undefined
        typeof foo == 'undefined'
        'hello' != 'world'
        0 == 0
        true == true
        foo == null

        Examples of correct code for the "always" option:

        /*eslint eqeqeq: ["error", "always"]*/
        
        a === b
        foo === true
        bananas !== 1
        value === undefined
        typeof foo === 'undefined'
        'hello' !== 'world'
        0 === 0
        true === true
        foo === null

        This rule optionally takes a second argument, which should be an object with the following supported properties:

        • "null": Customize how this rule treats null literals. Possible values:
          • always (default) - Always use === or !==.
          • never - Never use === or !== with null.
          • ignore - Do not apply this rule to null.

        smart

        The "smart" option enforces the use of === and !== except for these cases:

        • Comparing two literal values
        • Evaluating the value of typeof
        • Comparing against null

        Examples of incorrect code for the "smart" option:

        /*eslint eqeqeq: ["error", "smart"]*/
        
        // comparing two variables requires ===
        a == b
        
        // only one side is a literal
        foo == true
        bananas != 1
        
        // comparing to undefined requires ===
        value == undefined

        Examples of correct code for the "smart" option:

        /*eslint eqeqeq: ["error", "smart"]*/
        
        typeof foo == 'undefined'
        'hello' != 'world'
        0 == 0
        true == true
        foo == null

        allow-null

        Deprecated: Instead of using this option use "always" and pass a "null" option property with value "ignore". This will tell eslint to always enforce strict equality except when comparing with the null literal.

        ["error", "always", {"null": "ignore"}]

        When Not To Use It

        If you don't want to enforce a style for using equality operators, then it's safe to disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "ComparisonOperator": "EQ",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

            var userParams = { 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

                userParams["ReturnValues"] = "UPDATED_NEW";
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "AttributeValueList": [{ "S": email }]
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "TableName": tableName, 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Unexpected space before function parentheses.
        Open

          ddb.getItem(params, function (err, data) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Missing semicolon.
        Open

            done(err, data.Item)
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  if (err) { console.error("Unable to update item. Error JSON:", JSON.stringify(err, null, 2)); }
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

          endpoint: "https://dynamodb.ap-southeast-1.amazonaws.com",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

              "id": { "N": id } 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

              "id": { "N": id } 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Unexpected space before function parentheses.
        Open

          ddb.query(params, function (err, data) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Strings must use singlequote.
        Open

        var tableName = "Users";
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "AttributeValueList": [{ "S": email }]
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "#lastLogin": "lastLogin"
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  ":ts": { "N": new Date().getTime().toString() } 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "IndexName": "email-index",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

          })
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

              "TableName": tableName, 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

              "email": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

          accessKeyId: "AKIAJ3EW4JY7RGPIGELA",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "ComparisonOperator": "EQ",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

              "Key": { 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

              "Key": { 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

                "id": data.Items[0]["id"] 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Unexpected space before function parentheses.
        Open

            ddb.getItem(userParams, function (err, data) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Unexpected space before function parentheses.
        Open

        module.exports.createUser = function (req, email, password, done) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Strings must use singlequote.
        Open

                "ComparisonOperator": "EQ",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

          var params = { 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

                "AttributeValueList": [{ "S": email }]
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

                  ":ts": { "N": new Date().getTime().toString() } 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Missing semicolon.
        Open

        }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                userParams["UpdateExpression"] = "SET #lastLogin = :ts";
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                userParams["ExpressionAttributeValues"] = { 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "Key": { 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

            "Key": { 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

            "IndexName": "email-index",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

                userParams["ExpressionAttributeValues"] = { 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

            "IndexName": "email-index",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "AttributeValueList": [{ "S": email }]
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "id": data.Items[0]["id"] 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

                "id": data.Items[0]["id"] 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Trailing spaces not allowed.
        Open

            } 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Missing semicolon.
        Open

        }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Unexpected space before function parentheses.
        Open

        module.exports.login = function (req, email, password, done) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Strings must use singlequote.
        Open

            "TableName": tableName,
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "KeyConditions": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

              "email": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                userParams["UpdateExpression"] = "SET #lastLogin = :ts";
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "#lastLogin": "lastLogin"
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                userParams["ReturnValues"] = "UPDATED_NEW";
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "TableName": tableName,
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

          }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

              } 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

                "ComparisonOperator": "EQ",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

            "TableName": tableName, 
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

            "KeyConditions": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

              "TableName": tableName, 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  ":ts": { "N": new Date().getTime().toString() } 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "IndexName": "email-index",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

          secretAccessKey: "+g4dz4FSNTq7gbNwoGne+TnyEj+6bNWDfkeQHhEy",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

          region: "ap-southeast-1"
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

              "id": { "N": id } 
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Trailing spaces not allowed.
        Open

            
        Severity: Minor
        Found in models/user.js by eslint

        disallow trailing whitespace at the end of lines (no-trailing-spaces)

        Sometimes in the course of editing files, you can end up with extra whitespace at the end of lines. These whitespace differences can be picked up by source control systems and flagged as diffs, causing frustration for developers. While this extra whitespace causes no functional issues, many code conventions require that trailing spaces be removed before check-in.

        Rule Details

        This rule disallows trailing whitespace (spaces, tabs, and other Unicode whitespace characters) at the end of lines.

        Examples of incorrect code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;//•••••
        var baz = 5;//••
        //•••••

        Examples of correct code for this rule:

        /*eslint no-trailing-spaces: "error"*/
        
        var foo = 0;
        var baz = 5;

        Options

        This rule has an object option:

        • "skipBlankLines": false (default) disallows trailing whitespace on empty lines
        • "skipBlankLines": true allows trailing whitespace on empty lines

        skipBlankLines

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

        /*eslint no-trailing-spaces: ["error", { "skipBlankLines": true }]*/
        
        var foo = 0;
        var baz = 5;
        //•••••

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

        Strings must use singlequote.
        Open

                userParams["ExpressionAttributeNames"] = {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

            })
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "Item": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "#subscribedEmails": "subscribedEmails"
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  ":emails": { SS: emails }
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  console.log("Subcribe successful!");
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "pw": { "S": bcrypt.hashSync(password) }
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Unexpected space before function parentheses.
        Open

              ddb.putItem(params, function (err, data) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Expected space or tab after '//' in comment.
        Open

          console.log("Scanning for :" + JSON.stringify(params))//.Items["email"].name)
        Severity: Minor
        Found in models/user.js by eslint

        Requires or disallows a whitespace (space or tab) beginning a comment (spaced-comment)

        Some style guides require or disallow a whitespace immediately after the initial // or /* of a comment. Whitespace after the // or /* makes it easier to read text in comments. On the other hand, commenting out code is easier without having to put a whitespace right after the // or /*.

        Rule Details

        This rule will enforce consistency of spacing after the start of a comment // or /*. It also provides several exceptions for various documentation styles.

        Options

        The rule takes two options.

        • The first is a string which be either "always" or "never". The default is "always".

          • If "always" then the // or /* must be followed by at least one whitespace.
          • If "never" then there should be no whitespace following.
        • This rule can also take a 2nd option, an object with any of the following keys: "exceptions" and "markers".

          • The "exceptions" value is an array of string patterns which are considered exceptions to the rule. Please note that exceptions are ignored if the first argument is "never".
          "spaced-comment": ["error", "always", { "exceptions": ["-", "+"] }]
          • The "markers" value is an array of string patterns which are considered markers for docblock-style comments, such as an additional /, used to denote documentation read by doxygen, vsdoc, etc. which must have additional characters. The "markers" array will apply regardless of the value of the first argument, e.g. "always" or "never".
          "spaced-comment": ["error", "always", { "markers": ["/"] }]

        The difference between a marker and an exception is that a marker only appears at the beginning of the comment whereas exceptions can occur anywhere in the comment string.

        You can also define separate exceptions and markers for block and line comments. The "block" object can have an additional key "balanced", a boolean that specifies if inline block comments should have balanced spacing. The default value is false.

        • If "balanced": true and "always" then the /* must be followed by at least one whitespace, and the */ must be preceded by at least one whitespace.

        • If "balanced": true and "never" then there should be no whitespace following /* or preceding */.

        • If "balanced": false then balanced whitespace is not enforced.

        "spaced-comment": ["error", "always", {
            "line": {
                "markers": ["/"],
                "exceptions": ["-", "+"]
            },
            "block": {
                "markers": ["!"],
                "exceptions": ["*"],
                "balanced": true
            }
        }]

        always

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

        /*eslint spaced-comment: ["error", "always"]*/
        
        //This is a comment with no whitespace at the beginning
        
        /*This is a comment with no whitespace at the beginning */
        /* eslint spaced-comment: ["error", "always", { "block": { "balanced": true } }] */
        /* This is a comment with whitespace at the beginning but not the end*/

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

        /* eslint spaced-comment: ["error", "always"] */
        
        // This is a comment with a whitespace at the beginning
        
        /* This is a comment with a whitespace at the beginning */
        
        /*
         * This is a comment with a whitespace at the beginning
         */
        
        /*
        This comment has a newline
        */
        /* eslint spaced-comment: ["error", "always"] */
        
        /**
        * I am jsdoc
        */

        never

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

        /*eslint spaced-comment: ["error", "never"]*/
        
        // This is a comment with a whitespace at the beginning
        
        /* This is a comment with a whitespace at the beginning */
        
        /* \nThis is a comment with a whitespace at the beginning */
        /*eslint spaced-comment: ["error", "never", { "block": { "balanced": true } }]*/
        /*This is a comment with whitespace at the end */

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

        /*eslint spaced-comment: ["error", "never"]*/
        
        /*This is a comment with no whitespace at the beginning */
        /*eslint spaced-comment: ["error", "never"]*/
        
        /**
        * I am jsdoc
        */

        exceptions

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

        /* eslint spaced-comment: ["error", "always", { "block": { "exceptions": ["-"] } }] */
        
        //--------------
        // Comment block
        //--------------
        /* eslint spaced-comment: ["error", "always", { "exceptions": ["-", "+"] }] */
        
        //------++++++++
        // Comment block
        //------++++++++
        /* eslint spaced-comment: ["error", "always", { "exceptions": ["-", "+"] }] */
        
        /*------++++++++*/
        /* Comment block */
        /*------++++++++*/
        /* eslint spaced-comment: ["error", "always", { "line": { "exceptions": ["-+"] } }] */
        
        /*-+-+-+-+-+-+-+*/
        // Comment block
        /*-+-+-+-+-+-+-+*/

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

        /* eslint spaced-comment: ["error", "always", { "exceptions": ["-"] }] */
        
        //--------------
        // Comment block
        //--------------
        /* eslint spaced-comment: ["error", "always", { "line": { "exceptions": ["-"] } }] */
        
        //--------------
        // Comment block
        //--------------
        /* eslint spaced-comment: ["error", "always", { "exceptions": ["*"] }] */
        
        /****************
         * Comment block
         ****************/
        /* eslint spaced-comment: ["error", "always", { "exceptions": ["-+"] }] */
        
        //-+-+-+-+-+-+-+
        // Comment block
        //-+-+-+-+-+-+-+
        
        /*-+-+-+-+-+-+-+*/
        // Comment block
        /*-+-+-+-+-+-+-+*/
        /* eslint spaced-comment: ["error", "always", { "block": { "exceptions": ["-+"] } }] */
        
        /*-+-+-+-+-+-+-+*/
        // Comment block
        /*-+-+-+-+-+-+-+*/

        markers

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

        /* eslint spaced-comment: ["error", "always", { "markers": ["/"] }] */
        
        ///This is a comment with a marker but without whitespace
        /*eslint spaced-comment: ["error", "always", { "block": { "markers": ["!"], "balanced": true } }]*/
        /*! This is a comment with a marker but without whitespace at the end*/
        /*eslint spaced-comment: ["error", "never", { "block": { "markers": ["!"], "balanced": true } }]*/
        /*!This is a comment with a marker but with whitespace at the end */

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

        /* eslint spaced-comment: ["error", "always", { "markers": ["/"] }] */
        
        /// This is a comment with a marker
        /*eslint spaced-comment: ["error", "never", { "markers": ["!<"] }]*/
        
        //!<this is a line comment with marker block subsequent lines are ignored></this>
        /* eslint spaced-comment: ["error", "always", { "markers": ["global"] }] */
        
        /*global ABC*/

        Related Rules

        Strings must use singlequote.
        Open

                  "id": { "N": (Math.floor(Math.random() * 4294967296)).toString() },
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

          console.log("Scanning for :" + JSON.stringify(params))//.Items["email"].name)
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  return done(null, false, req.flash('signupMessage', "Apologies, please try again now. (" + err + ")"));
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "UpdateExpression": "ADD #subscribedEmails :emails",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "AttributeValueList": [{ "S": user.email.S }]
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "id": data.Items[0]["id"]
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

          console.log("user email: ", user.email.S);
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

          }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "email": { "S": email },
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "Key": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

              })
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "IndexName": "email-index",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "#subscribedEmails": "subscribedEmails"
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "id": { "N": (Math.floor(Math.random() * 4294967296)).toString() },
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "ExpressionAttributeValues": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "ReturnValues": "UPDATED_NEW"
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

          }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

          console.log("Scanning for :" + JSON.stringify(params))//.Items["email"].name)
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "TableName": tableName,
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

              }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Unexpected space before function parentheses.
        Open

              ddb.updateItem(userParams, function (err, data) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Newline required at end of file but not found.
        Open

        }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow newline at the end of files (eol-last)

        Trailing newlines in non-empty files are a common UNIX idiom. Benefits of trailing newlines include the ability to concatenate or append to files as well as output files to the terminal without interfering with shell prompts.

        Rule Details

        This rule enforces at least one newline (or absence thereof) at the end of non-empty files.

        Prior to v0.16.0 this rule also enforced that there was only a single line at the end of the file. If you still want this behaviour, consider enabling [no-multiple-empty-lines](no-multiple-empty-lines.md) with maxEOF and/or [no-trailing-spaces](no-trailing-spaces.md).

        Examples of incorrect code for this rule:

        /*eslint eol-last: ["error", "always"]*/
        
        function doSmth() {
          var foo = 2;
        }

        Examples of correct code for this rule:

        /*eslint eol-last: ["error", "always"]*/
        
        function doSmth() {
          var foo = 2;
        }\n

        Options

        This rule has a string option:

        • "always" (default) enforces that files end with a newline (LF)
        • "never" enforces that files do not end with a newline
        • "unix" (deprecated) is identical to "always"
        • "windows" (deprecated) is identical to "always", but will use a CRLF character when autofixing

        Deprecated: The options "unix" and "windows" are deprecated. If you need to enforce a specific linebreak style, use this rule in conjunction with linebreak-style. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

        }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "IndexName": "email-index",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Unexpected space before function parentheses.
        Open

          ddb.query(params, function (err, data) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Strings must use singlequote.
        Open

                "UpdateExpression": "ADD #subscribedEmails :emails",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Unexpected space before function parentheses.
        Open

          ddb.query(params, function (err, data) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Strings must use singlequote.
        Open

                  "email": { "S": email },
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  return done(null, false, req.flash('signupMessage', "Apologies, please try again now. (" + err + ")"));
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "id": data.Items[0]["id"]
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  console.error("Cannot subscribes", JSON.stringify(err, null, 2));
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "TableName": tableName,
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

        }
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

              "email": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

            "KeyConditions": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "ComparisonOperator": "EQ",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "ExpressionAttributeNames": {
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "ComparisonOperator": "EQ",
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "ReturnValues": "UPDATED_NEW"
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Missing semicolon.
        Open

              })
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow semicolons instead of ASI (semi)

        JavaScript is unique amongst the C-like languages in that it doesn't require semicolons at the end of each statement. In many cases, the JavaScript engine can determine that a semicolon should be in a certain spot and will automatically add it. This feature is known as automatic semicolon insertion (ASI) and is considered one of the more controversial features of JavaScript. For example, the following lines are both valid:

        var name = "ESLint"
        var website = "eslint.org";

        On the first line, the JavaScript engine will automatically insert a semicolon, so this is not considered a syntax error. The JavaScript engine still knows how to interpret the line and knows that the line end indicates the end of the statement.

        In the debate over ASI, there are generally two schools of thought. The first is that we should treat ASI as if it didn't exist and always include semicolons manually. The rationale is that it's easier to always include semicolons than to try to remember when they are or are not required, and thus decreases the possibility of introducing an error.

        However, the ASI mechanism can sometimes be tricky to people who are using semicolons. For example, consider this code:

        return
        {
            name: "ESLint"
        };

        This may look like a return statement that returns an object literal, however, the JavaScript engine will interpret this code as:

        return;
        {
            name: "ESLint";
        }

        Effectively, a semicolon is inserted after the return statement, causing the code below it (a labeled literal inside a block) to be unreachable. This rule and the [no-unreachable](no-unreachable.md) rule will protect your code from such cases.

        On the other side of the argument are those who says that since semicolons are inserted automatically, they are optional and do not need to be inserted manually. However, the ASI mechanism can also be tricky to people who don't use semicolons. For example, consider this code:

        var globalCounter = { }
        
        (function () {
            var n = 0
            globalCounter.increment = function () {
                return ++n
            }
        })()

        In this example, a semicolon will not be inserted after the first line, causing a run-time error (because an empty object is called as if it's a function). The [no-unexpected-multiline](no-unexpected-multiline.md) rule can protect your code from such cases.

        Although ASI allows for more freedom over your coding style, it can also make your code behave in an unexpected way, whether you use semicolons or not. Therefore, it is best to know when ASI takes place and when it does not, and have ESLint protect your code from these potentially unexpected cases. In short, as once described by Isaac Schlueter, a \n character always ends a statement (just like a semicolon) unless one of the following is true:

        1. The statement has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,.)
        2. The line is -- or ++ (in which case it will decrement/increment the next token.)
        3. It is a for(), while(), do, if(), or else, and there is no {
        4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

        Rule Details

        This rule enforces consistent use of semicolons.

        Options

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

        String option:

        • "always" (default) requires semicolons at the end of statements
        • "never" disallows semicolons as the end of statements (except to disambiguate statements beginning with [, (, /, +, or -)

        Object option:

        • "omitLastInOneLineBlock": true ignores the last semicolon in a block in which its braces (and therefore the content of the block) are in the same line

        always

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

        /*eslint semi: ["error", "always"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }

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

        /*eslint semi: "error"*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

        never

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint";
        
        object.method = function() {
            // ...
        };

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

        /*eslint semi: ["error", "never"]*/
        
        var name = "ESLint"
        
        object.method = function() {
            // ...
        }
        
        var name = "ESLint"
        
        ;(function() {
            // ...
        })()

        omitLastInOneLineBlock

        Examples of additional correct code for this rule with the "always", { "omitLastInOneLineBlock": true } options:

        /*eslint semi: ["error", "always", { "omitLastInOneLineBlock": true}] */
        
        if (foo) { bar() }
        
        if (foo) { bar(); baz() }

        When Not To Use It

        If you do not want to enforce semicolon usage (or omission) in any particular way, then you can turn this rule off.

        Further Reading

        Related Rules

        • [no-extra-semi](no-extra-semi.md)
        • [no-unexpected-multiline](no-unexpected-multiline.md)
        • [semi-spacing](semi-spacing.md) Source: http://eslint.org/docs/rules/

        Block must not be padded by blank lines.
        Open

            } else {
        Severity: Minor
        Found in models/user.js by eslint

        require or disallow padding within blocks (padded-blocks)

        Some style guides require block statements to start and end with blank lines. The goal is to improve readability by visually separating the block content and the surrounding code.

        if (a) {
        
            b();
        
        }

        Since it's good to have a consistent code style, you should either always write padded blocks or never do it.

        Rule Details

        This rule enforces consistent empty line padding within blocks.

        Options

        This rule has one option, which can be a string option or an object option.

        String option:

        • "always" (default) requires empty lines at the beginning and ending of block statements (except switch statements and classes)
        • "never" disallows empty lines at the beginning and ending of block statements (except switch statements and classes)

        Object option:

        • "blocks" require or disallow padding within block statements
        • "classes" require or disallow padding within classes
        • "switches" require or disallow padding within switch statements

        always

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

        /*eslint padded-blocks: ["error", "always"]*/
        
        if (a) {
            b();
        }
        
        if (a) { b(); }
        
        if (a)
        {
            b();
        }
        
        if (a) {
        
            b();
        }
        
        if (a) {
            b();
        
        }
        
        if (a) {
            // comment
            b();
        
        }

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

        /*eslint padded-blocks: ["error", "always"]*/
        
        if (a) {
        
            b();
        
        }
        
        if (a)
        {
        
            b();
        
        }
        
        if (a) {
        
            // comment
            b();
        
        }

        never

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

        /*eslint padded-blocks: ["error", "never"]*/
        
        if (a) {
        
            b();
        
        }
        
        if (a)
        {
        
            b();
        
        }
        
        if (a) {
        
            b();
        }
        
        if (a) {
            b();
        
        }

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

        /*eslint padded-blocks: ["error", "never"]*/
        
        if (a) {
            b();
        }
        
        if (a)
        {
            b();
        }

        blocks

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

        /*eslint padded-blocks: ["error", { "blocks": "always" }]*/
        
        if (a) {
            b();
        }
        
        if (a) { b(); }
        
        if (a)
        {
            b();
        }
        
        if (a) {
        
            b();
        }
        
        if (a) {
            b();
        
        }
        
        if (a) {
            // comment
            b();
        
        }

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

        /*eslint padded-blocks: ["error", { "blocks": "always" }]*/
        
        if (a) {
        
            b();
        
        }
        
        if (a)
        {
        
            b();
        
        }
        
        if (a) {
        
            // comment
            b();
        
        }

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

        /*eslint padded-blocks: ["error", { "blocks": "never" }]*/
        
        if (a) {
        
            b();
        
        }
        
        if (a)
        {
        
            b();
        
        }
        
        if (a) {
        
            b();
        }
        
        if (a) {
            b();
        
        }

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

        /*eslint padded-blocks: ["error", { "blocks": "never" }]*/
        
        if (a) {
            b();
        }
        
        if (a)
        {
            b();
        }

        classes

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

        /*eslint padded-blocks: ["error", { "classes": "always" }]*/
        
        class  A {
            constructor(){
            }
        }

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

        /*eslint padded-blocks: ["error", { "classes": "always" }]*/
        
        class  A {
        
            constructor(){
            }
        
        }

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

        /*eslint padded-blocks: ["error", { "classes": "never" }]*/
        
        class  A {
        
            constructor(){
            }
        
        }

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

        /*eslint padded-blocks: ["error", { "classes": "never" }]*/
        
        class  A {
            constructor(){
            }
        }

        switches

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

        /*eslint padded-blocks: ["error", { "switches": "always" }]*/
        
        switch (a) {
            case 0: foo();
        }

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

        /*eslint padded-blocks: ["error", { "switches": "always" }]*/
        
        switch (a) {
        
            case 0: foo();
        
        }
        
        if (a) {
            b();
        }

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

        /*eslint padded-blocks: ["error", { "switches": "never" }]*/
        
        switch (a) {
        
            case 0: foo();
        
        }

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

        /*eslint padded-blocks: ["error", { "switches": "never" }]*/
        
        switch (a) {
            case 0: foo();
        }
        
        if (a) {
        
            b();
        
        }

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of padding within blocks. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                  "pw": { "S": bcrypt.hashSync(password) }
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Unexpected space before function parentheses.
        Open

        module.exports.subscribe = function (emails, user) {
        Severity: Minor
        Found in models/user.js by eslint

        Require or disallow a space before function parenthesis (space-before-function-paren)

        When formatting a function, whitespace is allowed between the function name or function keyword and the opening paren. Named functions also require a space between the function keyword and the function name, but anonymous functions require no whitespace. For example:

        function withoutSpace(x) {
            // ...
        }
        
        function withSpace (x) {
            // ...
        }
        
        var anonymousWithoutSpace = function() {};
        
        var anonymousWithSpace = function () {};

        Style guides may require a space after the function keyword for anonymous functions, while others specify no whitespace. Similarly, the space after a function name may or may not be required.

        Rule Details

        This rule aims to enforce consistent spacing before function parentheses and as such, will warn whenever whitespace doesn't match the preferences specified.

        Options

        This rule has a string option or an object option:

        {
            "space-before-function-paren": ["error", "always"],
            // or
            "space-before-function-paren": ["error", {
                "anonymous": "always",
                "named": "always",
                "asyncArrow": "ignore"
            }],
        }
        • always (default) requires a space followed by the ( of arguments.
        • never disallows any space followed by the ( of arguments.

        The string option does not check async arrow function expressions for backward compatibility.

        You can also use a separate option for each type of function. Each of the following options can be set to "always", "never", or "ignore". Default is "always" basically.

        • anonymous is for anonymous function expressions (e.g. function () {}).
        • named is for named function expressions (e.g. function foo () {}).
        • asyncArrow is for async arrow function expressions (e.g. async () => {}). asyncArrow is set to "ignore" by default for backwards compatibility.

        "always"

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: "error"*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        "never"

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        var bar = function foo () {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

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

        /*eslint space-before-function-paren: ["error", "never"]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        var bar = function foo() {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        // async arrow function expressions are ignored by default.
        var foo = async () => 1
        var foo = async() => 1

        {"anonymous": "always", "named": "never", "asyncArrow": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };
        
        var foo = async(a) => await a

        Examples of correct code for this rule with the {"anonymous": "always", "named": "never", "asyncArrow": "always"} option:

        /*eslint space-before-function-paren: ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };
        
        var foo = async (a) => await a

        {"anonymous": "never", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        var bar = function () {
            // ...
        };
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "never", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "never", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo () {
            // ...
        }
        
        var bar = function() {
            // ...
        };
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        {"anonymous": "ignore", "named": "always"}

        Examples of incorrect code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        function foo() {
            // ...
        }
        
        class Foo {
            constructor() {
                // ...
            }
        }
        
        var foo = {
            bar() {
                // ...
            }
        };

        Examples of correct code for this rule with the {"anonymous": "ignore", "named": "always"} option:

        /*eslint space-before-function-paren: ["error", { "anonymous": "ignore", "named": "always" }]*/
        /*eslint-env es6*/
        
        var bar = function() {
            // ...
        };
        
        var bar = function () {
            // ...
        };
        
        function foo () {
            // ...
        }
        
        class Foo {
            constructor () {
                // ...
            }
        }
        
        var foo = {
            bar () {
                // ...
            }
        };

        When Not To Use It

        You can turn this rule off if you are not concerned with the consistency of spacing before function parenthesis.

        Related Rules

        Strings must use singlequote.
        Open

                "AttributeValueList": [{ "S": user.email.S }]
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

              console.error("Cannot find user", JSON.stringify(err, null, 2));
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

        Strings must use singlequote.
        Open

                "TableName": tableName,
        Severity: Minor
        Found in models/user.js by eslint

        enforce the consistent use of either backticks, double, or single quotes (quotes)

        JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example:

        /*eslint-env es6*/
        
        var double = "double";
        var single = 'single';
        var backtick = `backtick`;    // ES6 only

        Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted).

        Many codebases require strings to be defined in a consistent manner.

        Rule Details

        This rule enforces the consistent use of either backticks, double, or single quotes.

        Options

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

        String option:

        • "double" (default) requires the use of double quotes wherever possible
        • "single" requires the use of single quotes wherever possible
        • "backtick" requires the use of backticks wherever possible

        Object option:

        • "avoidEscape": true allows strings to use single-quotes or double-quotes so long as the string contains a quote that would have to be escaped otherwise
        • "allowTemplateLiterals": true allows strings to use backticks

        Deprecated: The object property avoid-escape is deprecated; please use the object property avoidEscape instead.

        double

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

        /*eslint quotes: ["error", "double"]*/
        
        var single = 'single';
        var unescaped = 'a string containing "double" quotes';

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

        /*eslint quotes: ["error", "double"]*/
        /*eslint-env es6*/
        
        var double = "double";
        var backtick = `back\ntick`;  // backticks are allowed due to newline
        var backtick = tag`backtick`; // backticks are allowed due to tag

        single

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

        /*eslint quotes: ["error", "single"]*/
        
        var double = "double";
        var unescaped = "a string containing 'single' quotes";

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

        /*eslint quotes: ["error", "single"]*/
        /*eslint-env es6*/
        
        var single = 'single';
        var backtick = `back${x}tick`; // backticks are allowed due to substitution

        backticks

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

        /*eslint quotes: ["error", "backtick"]*/
        
        var single = 'single';
        var double = "double";
        var unescaped = 'a string containing `backticks`';

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

        /*eslint quotes: ["error", "backtick"]*/
        /*eslint-env es6*/
        
        var backtick = `backtick`;

        avoidEscape

        Examples of additional correct code for this rule with the "double", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "double", { "avoidEscape": true }]*/
        
        var single = 'a string containing "double" quotes';

        Examples of additional correct code for this rule with the "single", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "single", { "avoidEscape": true }]*/
        
        var double = "a string containing 'single' quotes";

        Examples of additional correct code for this rule with the "backtick", { "avoidEscape": true } options:

        /*eslint quotes: ["error", "backtick", { "avoidEscape": true }]*/
        
        var double = "a string containing `backtick` quotes"

        allowTemplateLiterals

        Examples of additional correct code for this rule with the "double", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "double", { "allowTemplateLiterals": true }]*/
        
        var double = "double";
        var double = `double`;

        Examples of additional correct code for this rule with the "single", { "allowTemplateLiterals": true } options:

        /*eslint quotes: ["error", "single", { "allowTemplateLiterals": true }]*/
        
        var single = 'single';
        var single = `single`;

        When Not To Use It

        If you do not need consistency in your string styles, you can safely disable this rule. Source: http://eslint.org/docs/rules/

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

          var params = {
            "TableName": tableName,
            "IndexName": "email-index",
            "KeyConditions": {
              "email": {
        Severity: Minor
        Found in models/user.js and 1 other location - About 40 mins to fix
        models/user.js on lines 32..41

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 48.

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

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

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

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

        Refactorings

        Further Reading

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

          var params = {
            "TableName": tableName,
            "IndexName": "email-index",
            "KeyConditions": {
              "email": {
        Severity: Minor
        Found in models/user.js and 1 other location - About 40 mins to fix
        models/user.js on lines 80..89

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 48.

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

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

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

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

        Refactorings

        Further Reading

        There are no issues that match your filters.

        Category
        Status