{
  "root": true,
  "env": {
    "browser": true
  },
  "parser": "@babel/eslint-parser",
  "extends": ["airbnb"],
  "plugins": ["@babel"],
  "globals": {
    "document": true,
    "window": true,
    "event": true,
    "ACMS": true,
    "google": true,
    "prettyPrint": true,
    "_": true,
    "$": true,
    "jQuery": true
  },
  "rules": {
    // high
    "comma-dangle": 0,
    "no-underscore-dangle": 0,
    "class-methods-use-this": 0,
    "no-param-reassign": 0,
    "no-mixed-operators": 0,
    "max-len": 0,
    "no-case-declarations": 0,
    "no-continue": 0,
    "no-undef": [
      "error",
      {
        "typeof": true
      }
    ],
    "indent": 0,
    "template-curly-spacing" : 0,
    "no-restricted-properties": 0,
    "no-new-func": 0,
    "import/extensions": 0,
    "import/prefer-default-export": 0,
    "jsx-a11y/href-no-hash": 0,
    "jsx-a11y/img-has-alt": 0,
    "jsx-a11y/label-has-for": 0,
    "react/sort-comp": 0,
    "react/jsx-filename-extension": 0,
    "react/jsx-no-bind": 0,
    "react/forbid-prop-types": 0,
    "react/prefer-stateless-function": 0,
    "no-useless-constructor": 0,
    "react/prop-types": 0,
    // medium
    "prefer-destructuring": 0,
    "react/no-unused-state": 0,
    "func-names": 0,
    "guard-for-in": 0,
    "no-plusplus": 0,
    "no-caller": 0,
    "consistent-return": 0,
    "no-useless-escape": 0,
    "no-restricted-syntax": 0,
    "no-restricted-globals": 0,
    "react/jsx-closing-tag-location": 0,
    "import/first": 0
    // low
    //    "eqeqeq": 0,
    //    "prefer-rest-params": 0,
    //    "one-var": 0,
    //    "no-return-assign": 0,
    //    "vars-on-top": 0,
    //    "no-var": 0,
    //    "new-cap": 0,
    //    "no-multi-assign": 0,
    //    "no-cond-assign": 0,
    //    "block-scoped-var": 0,
    //    "no-void": 0,
    //    "valid-typeof": 0,
    //    "camelcase": 0,
    //    "radix": 0,
    //    "no-redeclare": 0,
    //    "prefer-const": 0,
    //    "no-use-before-define": 0,
    //    "no-unused-expressions": 0,
    //    "no-extend-native": 0,
    //    "no-bitwise": 0
  },
  "settings": {
    "import/resolver": {
      "webpack": {
        "config": "webpack.prod.js"
      }
    }
  }
}
