{ "root": true, "parser": "@typescript-eslint/parser", "env": { "node": true }, "ignorePatterns": ["**/*.ts"], "plugins": ["@typescript-eslint", "@nrwl/nx"], "extends": ["plugin:storybook/recommended"], "rules": { "@typescript-eslint/explicit-module-boundary-types": "off", "no-restricted-imports": ["error", "create-nx-workspace"] }, "overrides": [ { "files": ["**/executors/**/schema.json", "**/generators/**/schema.json"], "parser": "jsonc-eslint-parser", "rules": { "@nrwl/nx/workspace/valid-schema-description": "error" } } ] }