{
  "parserOptions": {
    "ecmaVersion": 2017
  },

  "plugins": [
      "security",
      "jsdoc",
      "mocha"
  ],
  "env": {
      "browser": false,
      "node": true,
      "es6": true
  },
  "rules": {
      // Possible Errors
      "comma-dangle": ["error", "never"],
      "no-cond-assign": "error",
      "no-console": ["error", { "allow": ["info", "warn", "error"] }],
      "no-constant-condition": "error",
      "no-control-regex": "error",
      "no-debugger": "error",
      "no-dupe-args": "error",
      "no-dupe-keys": "error",
      "no-duplicate-case": "error",
      "no-empty": "error",
      "no-empty-character-class": "error",
      "no-ex-assign": "error",
      "no-extra-boolean-cast": "error",
      "no-extra-parens": "off",
      "no-extra-semi": "error",
      "no-func-assign": "error",
      "no-inner-declarations": "off",
      "no-invalid-regexp": "error",
      "no-irregular-whitespace": "error",
      "no-negated-in-lhs": "error",
      "no-obj-calls": "error",
      "no-regex-spaces": "error",
      "no-sparse-arrays": "error",
      "no-unexpected-multiline": "error",
      "no-unreachable": "error",
      "no-unsafe-finally": "error",
      "use-isnan": "error",
      "valid-jsdoc": "warn",
      "valid-typeof": "error",

      // Best Practices
      "accessor-pairs": "error",
      //"array-callback-return": "error",
      "block-scoped-var": "error",
      "complexity": "off",
      "consistent-return": "warn",
      "curly": "error",
      "default-case": "error",
      "dot-location": ["error", "property"],
      "dot-notation": "error",
      "eqeqeq": "error",
      "guard-for-in": "warn",
      "no-alert": "error",
      "no-caller": "error",
      "no-case-declarations": "error",
      "no-div-regex": "error",
      "no-else-return": "error",
      "no-empty-function": "error",
      "no-empty-pattern": "error",
      "no-eq-null": "error",
      "no-eval": "error",
      "no-extend-native": "error",
      "no-extra-bind": "error",
      "no-extra-label": "error",
      "no-fallthrough": "error",
      "no-floating-decimal": "error",
      "no-implicit-coercion": "error",
      "no-implicit-globals": "error",
      "no-implied-eval": "error",
      "no-invalid-this": "error",
      "no-iterator": "error",
      "no-labels": "error",
      "no-lone-blocks": "error",
      "no-loop-func": "error",
      "no-magic-numbers": "off",
      "no-multi-spaces": "error",
      "no-multi-str": "error",
      "no-native-reassign": "error",
      "no-new": "error",
      "no-new-func": "error",
      "no-new-wrappers": "error",
      "no-octal": "error",
      "no-octal-escape": "error",
      // "_no-param-reassign": "error",
      "no-proto": "error",
      "no-redeclare": "error",
      "no-return-assign": "error",
      "no-script-url": "error",
      "no-self-assign": "error",
      "no-self-compare": "error",
      "no-sequences": "error",
      "no-throw-literal": "error",
      "no-unmodified-loop-condition": "error",
      "no-unused-expressions": "off",
      "no-unused-labels": "error",
      "no-useless-call": "error",
      "no-useless-concat": "error",
      "no-useless-escape": "off",
      "no-void": "error",
      "no-warning-comments": "off",
      "no-with": "error",
      "radix": "off",
      // "vars-on-top": "error",
      "wrap-iife": "error",
      "yoda": "error",

      // Strict Mode
      "strict": "off",

      // Variables
      "init-declarations": "off",
      "no-catch-shadow": "error",
      "no-delete-var": "error",
      "no-label-var": "error",
      "no-restricted-globals": "error",
      //"no-shadow": "error",
      "no-shadow-restricted-names": "error",
      "no-undef": "off",
      "no-undef-init": "error",
      "no-undefined": "off",
      "no-unused-vars": "error",
      "no-use-before-define": "error",

      // Stylistic Issues
      "array-bracket-spacing": "error",
      "block-spacing": "error",
      "brace-style": [2, "stroustrup", { "allowSingleLine": true }],
      "camelcase": "off",
      "comma-spacing": [2, { "before": false, "after": true }],
      "comma-style": ["error", "last"],
      "computed-property-spacing": "error",
      // "consistent-this": "warn",
      "eol-last": "error",
      "func-names": "off",
      "func-style": "off",
      "id-blacklist": "error",
      "id-length": "off",
      "id-match": "error",
      "indent": ["error", 2, {
          "VariableDeclarator": { "var": 1, "let": 1, "const": 1 },
          "SwitchCase": 1
      }],
      "jsx-quotes": ["error", "prefer-single"],
      "key-spacing": "error",
      "keyword-spacing": "error",
      "linebreak-style": ["error", "unix"],
      "lines-around-comment": ["error", {
          "beforeBlockComment": true,
          "afterBlockComment": false,
          "beforeLineComment": false,
          "afterLineComment": false,
          "allowBlockStart": true,
          "allowBlockEnd": false,
          "allowObjectStart": true,
          "allowObjectEnd": false,
          "allowArrayStart": true,
          "allowArrayEnd": false
      }],
      "max-depth": "error",
      "max-len": ["error", {
          "code": 120
      }],
      "max-nested-callbacks": "error",
      "max-params": "off",
      "max-statements": "off",
      "max-statements-per-line": "off",
      "new-cap": "off",
      "new-parens": "error",
      "newline-after-var": ["off", "always"],
      "newline-before-return": "off",
      "newline-per-chained-call": "off",
      "no-array-constructor": "error",
      // "no-bitwise": "error",
      // "no-continue": "error",
      "no-inline-comments": "off",
      "no-lonely-if": "error",
      "no-mixed-spaces-and-tabs": "error",
      "no-multiple-empty-lines": "error",
      "no-negated-condition": "off",
      "no-nested-ternary": "off",
      "no-new-object": "error",
      "no-plusplus": "off",
      "no-restricted-syntax": "error",
      "no-spaced-func": "error",
      "no-ternary": "off",
      "no-trailing-spaces": "error",
      "no-underscore-dangle": "off",
      "no-unneeded-ternary": "error",
      "no-whitespace-before-property": "error",
      "object-curly-spacing": ["error", "always"],
      "one-var": ["error", "always"],
      "one-var-declaration-per-line": "error",
      "operator-assignment": "error",
      "operator-linebreak": ["error", "after"],
      "padded-blocks": "off",
      "quote-props": "off",
      "quotes": ["error", "single"],
      "require-jsdoc": "warn",
      "semi": "error",
      "semi-spacing": "error",
      "sort-vars": "off",
      "space-before-blocks": "error",
      "space-in-parens": "error",
      "space-infix-ops": "error",
      "space-unary-ops": "error",
      "spaced-comment": ["error", "always", {
          "block": {
              "exceptions": ["!"]
          }
      }],
      "wrap-regex": "error",

      // ECMAScript 6
      "arrow-body-style": ["error", "always"],
      "arrow-parens": ["error", "always"],
      "arrow-spacing": "error",
      "constructor-super": "error",
      "generator-star-spacing": "error",
      "no-class-assign": "error",
      "no-confusing-arrow": "error",
      "no-const-assign": "error",
      "no-dupe-class-members": "error",
      "no-duplicate-imports": "error",
      "no-new-symbol": "error",
      "no-restricted-imports": "error",
      "no-this-before-super": "error",
      "no-useless-computed-key": "error",
      "no-useless-constructor": "off",
      "no-var": "off",
      "object-shorthand": "off",
      // "_prefer-arrow-callback": "error",
      "prefer-const": "off",
      "prefer-reflect": "off",
      // "prefer-rest-params": "error",
      "prefer-spread": "error",
      "prefer-template": "off",
      "require-yield": "error",
      "sort-imports": "off",
      "template-curly-spacing": "error",
      "yield-star-spacing": "error",

      // Mocha
      "mocha/no-exclusive-tests": 2,
      "mocha/no-skipped-tests": 1,
      "mocha/no-pending-tests": 2,
      "mocha/handle-done-callback": 2,
      "mocha/no-synchronous-tests": 0,
      "mocha/no-global-tests": 2,
      "mocha/no-return-and-callback": 2,
      "mocha/valid-test-description": 0,
      "mocha/valid-suite-description": 0,
      "mocha/no-sibling-hooks": 2,
      "mocha/no-mocha-arrows": 2,
      "mocha/no-hooks": 0,
      "mocha/no-hooks-for-single-case": 1,
      "mocha/no-top-level-hooks": 1,
      "mocha/no-identical-title": 2
  }
}
