{
  "extends": "eslint:recommended",

  "env": {
    "es6": true,
    "node": true
  },

  "ecmaFeatures": {
    "modules": true
  },

  "rules": {
    "array-bracket-spacing": [2, "never"],
    "arrow-parens": [2, "always"],
    "arrow-spacing": [2, {"before": true, "after": true}],
    "block-spacing": [2, "never"],
    "brace-style": 2,
    "comma-dangle": [2, "always-multiline"],
    "comma-spacing": [2, {"before": false, "after": true}],
    "comma-style": [2, "last"],
    "computed-property-spacing": [2, "never"],
    "consistent-return": 2,
    "constructor-super": 2,
    "curly": [2, "multi-line"],
    "dot-notation": 2,
    "eol-last": 2,
    "eqeqeq": 2,
    "guard-for-in": 2,
    "handle-callback-err": [2, "^.*(e|E)rr"],
    "indent": [2, 2],
    "jsx-quotes": [2, "prefer-single"],
    "key-spacing": [2, {"beforeColon": false, "afterColon": true}],
    "linebreak-style": [2, "unix"],
    "max-len": [2, 80],
    "new-parens": 2,
    "no-alert": 2,
    "no-caller": 2,
    "no-case-declarations": 2,
    "no-console": 2,
    "no-const-assign": 2,
    "no-empty": 2,
    "no-eval": 2,
    "no-extend-native": 2,
    "no-extra-bind": 2,
    "no-fallthrough": 2,
    "no-implicit-coercion": 2,
    "no-implied-eval": 2,
    "no-loop-func": 2,
    "no-mixed-spaces-and-tabs": 2,
    "no-multiple-empty-lines": [2, {"max": 1}],
    "no-nested-ternary": 2,
    "no-spaced-func": 2,
    "no-this-before-super": 2,
    "no-trailing-spaces": 2,
    "no-undef": 2,
    "no-unused-expressions": 2,
    "no-unused-vars": [2, {"vars": "all", "args": "none"}],
    "no-var": 2,
    "object-curly-spacing": [2, "never"],
    "object-shorthand": [2, "methods"],
    "one-var": [2, "never"],
    "operator-linebreak": [2, "after"],
    "padded-blocks": [2, "never"],
    "prefer-arrow-callback": 2,
    "prefer-const": 2,
    "prefer-reflect": 2,
    "prefer-spread": 2,
    "quotes": [2, "single"],
    "quote-props": [2, "as-needed"],
    "semi": [2, "never"],
    "space-after-keywords": [2, "always"],
    "space-before-blocks": 2,
    "space-before-keywords": [2, "always"],
    "space-in-parens": [2, "never"],
    "space-infix-ops": 2,
    "space-return-throw-case": 2,
    "spaced-comment": [2, "always"],
    "strict": [2, "global"],

    "prefer-template": 1,

    "camelcase": 0,
    "new-cap": 0,
    "no-process-exit": 0,
    "no-underscore-dangle": 0,
    "no-use-before-define": 0,
    "valid-jsdoc": 0
  }
}
