{
  "rules": {
    "quotes": [ "error", "single" ],
    "linebreak-style": [ "error", "unix" ],
    "semi": [ "error", "always" ],
    "no-console": 0,
    "max-len": [ "error", 90 ],
    "comma-dangle": [ "error", "never" ],
    "no-cond-assign": ["error", "always"],
    "no-ex-assign": "error",
    "curly": "error",
    "max-depth": ["error", 5],
    "complexity": [1, 8],
    "prefer-const": "error",
    "indent": ["error", 2],
    "no-trailing-spaces": "error",
    "one-var": ["error", "never"],
    "key-spacing": ["error", {
      "beforeColon": false,
      "afterColon": true
    }],
    "keyword-spacing": ["error", {
      "before": true,
      "after": true
    }],
    "max-nested-callbacks": ["error", { "max": 4 }],
    "new-cap": "off",
    "new-parens": "error",
    "no-mixed-spaces-and-tabs": "error",
    "no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 } ],
    "no-nested-ternary": "error",
    "no-new-object": "error",
    "no-spaced-func": "error",
    "arrow-spacing": ["error", {"before": true, "after": true}],
    "operator-assignment": ["error", "always"],
    "operator-linebreak": ["error", "before"],
    "padded-blocks": ["error", "never"],
    "space-before-blocks": ["error", "always"],
    "space-before-function-paren": ["error", "never"],
    "object-curly-spacing": ["error", "always"],
    "array-bracket-spacing": ["error", "never"],
    "computed-property-spacing": ["error", "never"],
    "space-in-parens": ["error", "never"],
    "space-infix-ops": ["error", {"int32Hint": true}],
    "space-unary-ops": ["error", { "words": true, "nonwords": false }],
    "no-delete-var": "error",
    "no-underscore-dangle": "off",
    "no-undef-init": "error",
    "no-undef": "error",
    "no-undefined": "error",
    "no-unused-vars": ["error", {
      "vars": "all",
      "args": "after-used",
      "argsIgnorePattern": "^_"
    }],
    "no-use-before-define": "error",
    "yoda": ["error", "never"],
    "consistent-return": "error",
    "spaced-line-comment": "off",
    "strict": ["error", "never"],
    "eqeqeq": "error",
    "guard-for-in": "error",
    "no-alert": "error",
    "no-caller": "error",
    "no-labels": "error",
    "no-eval": "error",
    "no-fallthrough": "error",
    "default-case": "error",
    "no-iterator": "error",
    "no-loop-func": "error",
    "no-multi-spaces": ["error", {
      "exceptions": {
        "VariableDeclarator": true,
        "ImportDeclaration": true,
        "IfStatement": true
      }
    }],
    "no-multi-str": "error",
    "no-new": "error",
    "no-param-reassign": "error",
    "no-proto": "error",
    "no-redeclare": "error",
    "no-return-assign": "error",
    "no-self-compare": "error",
    "no-sequences": "error",
    "no-throw-literal": "error",
    "no-with": "error",
    "vars-on-top": "off",
    "wrap-iife": ["error", "outside"],
    "valid-typeof": "error",
    "max-statements": [1, 30],
    "max-params": [1, 6],
    "no-var": "error",
    "no-unexpected-multiline": "error",
    "dot-location": ["error", "property"],
    "no-unreachable": "error",
    "no-negated-in-lhs": "error",
    "no-irregular-whitespace": "error",
    "no-invalid-regexp": "error",
    "no-func-assign": "error",
    "no-extra-semi": "error",
    "no-extra-boolean-cast": "error",
    "no-empty": "error",
    "no-duplicate-case": "error",
    "no-dupe-keys": "error",
    "no-dupe-args": "error",
    "no-constant-condition": "error",
    "comma-style": ["error", "last"],
    "eol-last": "error",
    "no-lonely-if": "error"
  },
  "env": {
    "es6": true,
    "browser": true,
    "mocha": true,
    "node": true
  },
  "globals": {
    "__DEV__": true,
    "hJSX": true,
    "expect": true,
    "toState": true,
    "sinon": true
  },
  "extends": "eslint:recommended",
  "ecmaFeatures": {
    "jsx": true,
    "experimentalObjectRestSpread": true
  },
  "parser": "babel-eslint"
}
