{
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "project": "./tsconfig.json",
    "ecmaVersion": 2020,
    "sourceType": "module" // Allows for the use of imports
  },
  "plugins": ["@typescript-eslint", /*  "eslint-plugin-import", */ "eslint-plugin-jest"],
  "extends": [
    "eslint:recommended",
    /* "plugin:import/errors",
    "plugin:import/warnings",
    "plugin:import/typescript",
    "plugin:node/recommended", */
    "plugin:@typescript-eslint/eslint-recommended",
    "plugin:@typescript-eslint/recommended",
    "plugin:@typescript-eslint/recommended-requiring-type-checking",
    "plugin:jest/recommended",
    "prettier",
    "prettier/@typescript-eslint",
    "prettier/react"
  ],
  "rules": {
    "object-literal-sort-keys": "off",
    "no-console": "off",
    "no-unused-vars": "warn",
    "no-unused-expressions": "warn",
    "no-use-before-define": "warn",
    "no-async-promise-executor": "warn",
    "no-underscore-dangle": ["warn", { "enforceInMethodNames": true }],
    "@typescript-eslint/no-use-before-define": "warn",
    "@typescript-eslint/no-explicit-any": "warn",
    "@typescript-eslint/no-unsafe-member-access": "warn",
    "@typescript-eslint/no-unsafe-assignment": "warn",
    "@typescript-eslint/no-unsafe-return": "warn",
    "@typescript-eslint/no-unsafe-call": "warn",
    "@typescript-eslint/ban-types": "warn",
    "@typescript-eslint/unbound-method": "warn",
    "@typescript-eslint/no-misused-promises": "warn",
    "@typescript-eslint/restrict-template-expressions": ["warn", { "allowAny": true }]
  }
}
