{
  "globals": {
    "__webpack_public_path__": true,
    "bootstrap": true
  },
  "env": {
    "browser": true,
    "node": true,
    "es6": true
  },
  "plugins": [
    "prettier",
    "react",
    "import",
    "json",
    "cflint",
    "compat"
  ],
  "extends": [
    "plugin:react/recommended",
    "plugin:import/errors",
    "plugin:import/warnings"
  ],
  "rules": {
    "block-scoped-var": 2,
    "default-case": 2,
    "guard-for-in": 2,
    "no-else-return": 2,
    "no-floating-decimal": 2,
    "no-self-compare": 2,
    "no-void": 2,
    "radix": 2,
    "wrap-iife": 2,
    "no-catch-shadow": 2,
    "handle-callback-err": 2,
    "camelcase": 0,
    "no-unused-vars": [2, {"vars": "all", "args": "after-used"}],
    "no-undef": 2,
    "react/prop-types": [2, {"skipUndeclared": true}],
    "import/no-absolute-path": 2,
    "import/no-deprecated": 1,
    "import/no-mutable-exports": 1,
    "import/no-extraneous-dependencies": 1,
    "import/first": 1,
    "prettier/prettier": [2, {"trailingComma": "none", "singleQuote": true}],
    "compat/compat": 2,
    "no-console": "error"
  }
}
