{
  "env": {},
  "globals": {},
  "parserOptions": {
    "ecmaVersion": 6
  },
  "rules": {
    "no-console": 2,
    "semi": 2,
    "camelcase": [
      2,
      {
        "properties": "never"
      }
    ],
    "curly": [
      2,
      "all"
    ],
    "eqeqeq": 2,
    "wrap-iife": [2, "any"],
    "indent": [
      2,
      2,
      {
        "SwitchCase": 1,
        "VariableDeclarator": {"var": 2, "let": 2, "const": 3}
      }
    ],
    "no-use-before-define": 2,
    "valid-typeof": 2,
    "new-cap": [
      2,
      {
        "properties": false
      }
    ],
    "no-caller": 2,
    "quotes": [
      2,
      "single",
      "avoid-escape"
    ],
    "no-undef": 2,
    "no-unused-vars": 2,
    "strict": [
      2,
      "never"
    ],
    "no-unused-expressions": 2,
    "dot-notation": 0,
    "no-irregular-whitespace": 2,
    "keyword-spacing": [
      2,
      {}
    ],
    "space-before-blocks": [
      2,
      "always"
    ],
    "space-before-function-paren": [
      2,
      "always"
    ],
    "one-var": [
      2,
      "always"
    ],
    "padded-blocks": [
      2,
      "never"
    ],
    "no-empty": 2,
    "array-bracket-spacing": [
      2,
      "never",
      {
        "singleValue": false
      }
    ],
    "space-in-parens": [
      2,
      "never"
    ],
    "key-spacing": [
      2,
      {
        "beforeColon": false,
        "afterColon": true
      }
    ],
    "comma-style": [
      2,
      "last"
    ],
    "space-infix-ops": 2,
    "no-multiple-empty-lines": 2,
    "no-mixed-spaces-and-tabs": 2,
    "no-trailing-spaces": 2,
    "comma-dangle": [
      2,
      "never"
    ],
    "brace-style": 2,
    "eol-last": 2,
    "max-len": [
      2,
      120
    ],
    "yoda": [
      2,
      "never"
    ]
  }
}
