{ "extends": [ "@visionappscz/eslint-config-visionapps", "airbnb-typescript", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-type-checked", "plugin:deprecation/recommended", "plugin:typescript-sort-keys/recommended", ], "env": { "browser": true, "jest": true }, "overrides": [ { "files": [ "*.spec.tsx", "*.story.tsx", ], "rules": { "@typescript-eslint/unbound-method": "off" } } ], "parser": "@typescript-eslint/parser", "parserOptions": { "projectService": true, "project": "./tsconfig.json" }, "plugins": [ "@typescript-eslint" ], "rules": { "@typescript-eslint/consistent-type-definitions": ["error", "type"], "@typescript-eslint/consistent-type-exports": ["error"], "@typescript-eslint/consistent-type-imports": ["error"], "import/prefer-default-export": "off", "no-console": ["error"] } }