{ "env": { "node": true, "es2021": true, "browser": true }, "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module" }, "plugins": ["@typescript-eslint"], "ignorePatterns": ["src/supply-chain/tests/**/*.ts"], "rules": { "prefer-const": "off", "no-var": "off", "no-empty": "off", "no-useless-escape": "off", "no-useless-catch": "off", "no-case-declarations": "off", "no-non-null-assertion": "off", "@typescript-eslint/no-unused-vars": "error", "@typescript-eslint/no-namespace": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-inferrable-types": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/no-empty-interface": "off", "@typescript-eslint/ban-types": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-array-constructor": "off", "no-unsafe-optional-chaining": "off" } }