{
  "ignorePatterns": ["dist", "node_modules", "config"],
  "rules": {
    "max-len": [
      "error",
      {
        "ignoreUrls": true,
        "code": 120
      }
    ],
    "prefer-template": "off",
    "object-curly-spacing": 0,
    "no-multiple-empty-lines": [
      1,
      {
        "max": 1,
        "maxEOF": 1
      }
    ],
    "no-var": 1,
    "@typescript-eslint/no-explicit-any": 0,
    "@typescript-eslint/no-var-requires": 0,
    "no-new-wrappers": 1,
    "no-nested-ternary": 1,
    "no-console": 1,
    "no-template-curly-in-string": 1,
    "no-self-compare": 1,
    "import/prefer-default-export": 0,
    "func-names": [1, "as-needed"],
    "arrow-body-style": 0,
    "semi": [0, "never"],
    "import/no-extraneous-dependencies": ["off", { "devDependencies": false }],
    "react/react-in-jsx-scope": 0,
    "react/prop-types": 0,
    "no-case-declarations": 0
  },
  "env": {
    "node": true,
    "es6": true
  },
  "extends": [
    "eslint:recommended",
    "prettier",
    "plugin:@typescript-eslint/recommended",
    "plugin:react/recommended"
  ],
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "ecmaVersion": 2020,
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "plugins": ["prettier"],
  "settings": {
    "import/resolver": {
      "webpack": {
        "config": "config/webpack.common.js"
      }
    },
    "react": {
      "pragma": "h"
    }
  }
}
