UNPKG

@nx/eslint-plugin

Version:

The eslint-plugin package is an ESLint plugin that contains a collection of recommended ESLint rule configurations which you can extend from in your own ESLint configs, as well as an Nx-specific lint rule called enforce-module-boundaries.

53 lines (52 loc) 1.88 kB
{ "name": "eslint-plugin", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/eslint-plugin", "projectType": "library", "targets": { "build": { "outputs": ["{workspaceRoot}/dist/packages/eslint-plugin/README.md"], "command": "node ./scripts/copy-readme.js eslint-plugin" }, "legacy-post-build": { "executor": "@nx/workspace-plugin:legacy-post-build", "options": { "tsConfig": "./tsconfig.lib.json", "assets": [ { "input": "packages/eslint-plugin", "glob": "**/files/**", "output": "/" }, { "input": "packages/eslint-plugin", "glob": "**/files/**/.gitkeep", "output": "/" }, { "input": "packages/eslint-plugin", "glob": "**/*.json", "ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"], "output": "/" }, { "input": "packages/eslint-plugin", "glob": "**/*.js", "ignore": ["**/jest.config.js"], "output": "/" }, { "input": "packages/eslint-plugin", "glob": "**/*.d.ts", "output": "/" }, { "input": "", "glob": "LICENSE", "output": "/" } ] } } } }