{
  "extends": [
    "airbnb/base",
    "plugin:vue/essential"
  ],
  "env": {
    "browser": true
  },
  "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-continue": 0,
    "no-undef": ["error", { "typeof": true }],
    "no-restricted-properties": 0,
    "no-new-func": 0,
    "import/extensions": 0,
    "import/prefer-default-export": 0,

   // medium
    "func-names": 0,
    "guard-for-in": 0,
    "no-plusplus": 0,
    "no-caller": 0,
    "consistent-return": 0,
    "no-useless-escape": 0,
    "no-restricted-syntax": 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.config.js"
      }
    }
  }
}
