{
  "globals": {},
  "env": {
    "commonjs": true,
    "node": true,
    "es2022": true
  },
  "parser": "@typescript-eslint/parser",
  "parserOptions": { "ecmaVersion": 2022 },
  "plugins": [
    "@typescript-eslint",
    "import",
    "json"
  ],
  "extends": [
    "airbnb-base",
    "eslint:recommended",
    "plugin:@typescript-eslint/eslint-recommended",
    "plugin:@typescript-eslint/recommended",
    "plugin:json/recommended-with-comments",
    "plugin:import/typescript"
  ],
  "ignorePatterns": [],
  "rules": {
    "max-len": [1, 275, 3],
    "@typescript-eslint/ban-ts-comment":"off",
    "dot-notation":"off",
    "import/extensions":"off",
    "import/prefer-default-export":"off",
    "import/no-extraneous-dependencies":"off",
    "lines-between-class-members":"off",
    "no-await-in-loop":"off",
    "no-bitwise":"off",
    "no-mixed-operators":"off",
    "no-plusplus":"off",
    "no-case-declarations":"off",
    "no-param-reassign":"off",
    "no-restricted-syntax":"off",
    "no-regex-spaces":"off",
    "object-curly-newline":"off",
    "prefer-template":"off",
    "radix":"off"
  }
}
