{ "root": true, "ignorePatterns": ["lib/*", "node_modules/**"], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended" ], "rules": { "prettier/prettier": "warn", "no-console": "warn", "sort-imports": [ "warn", { "ignoreCase": true, "ignoreDeclarationSort": true } ], "@typescript-eslint/consistent-type-imports": "error", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-namespace": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-empty-function": "warn", "no-inner-declarations": "off" }, "overrides": [ { "files": ["test/data/contracts/**/*.ts"], "rules": { "no-use-before-define": "error", "@typescript-eslint/no-use-before-define": "error" } } ] }