Socket
Socket
Sign inDemoInstall

@nrwl/eslint-plugin-nx

Package Overview
Dependencies
1
Maintainers
7
Versions
1280
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @nrwl/eslint-plugin-nx

The eslint-plugin-nx 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.


Version published
Weekly downloads
1.2M
increased by6.43%
Maintainers
7
Created
Weekly downloads
 

Package description

What is @nrwl/eslint-plugin-nx?

The @nrwl/eslint-plugin-nx package provides a set of ESLint rules and configurations specifically designed for Nx workspaces. Nx is a suite of powerful, extensible dev tools to help you architect, test, and build at any scale — integrating seamlessly with modern technologies and libraries while providing a robust CLI, caching, dependency management, and more. This ESLint plugin helps enforce best practices and consistent code standards within an Nx workspace.

What are @nrwl/eslint-plugin-nx's main functionalities?

Enforce Module Boundaries

This rule helps to maintain module boundaries by restricting imports between libraries in an Nx workspace. It can enforce that libraries can only depend on other libraries that are tagged to be dependencies, preventing circular dependencies and ensuring a proper project structure.

{
  "rules": {
    "@nrwl/nx/enforce-module-boundaries": [
      "error",
      {
        "enforceBuildableLibDependency": true,
        "allow": [],
        "depConstraints": [
          { "sourceTag": "*", "onlyDependOnLibsWithTags": ["*"] }
        ]
      }
    ]
  }
}

Ban Project Import

This rule prevents importing from specific projects within the workspace. It's useful for large workspaces where you want to enforce strict boundaries between projects, such as not allowing imports from a specific library or application.

{
  "rules": {
    "@nrwl/nx/ban-project-import": [
      "error",
      {
        "allow": ["my-app/**"]
      }
    ]
  }
}

Other packages similar to @nrwl/eslint-plugin-nx

Readme

Source

@nrwl/eslint-plugin-nx has been renamed to @nx/eslint-plugin!

@nrwl/eslint-plugin-nx has been renamed to @nx/eslint-plugin. Please use that instead.

Read more here

@nrwl/eslint-plugin-nx will no longer be published in Nx v18.

Nx - Smart Monorepos · Fast CI

Nx: Smart Monorepos · Fast CI

Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.

Keywords

FAQs

Last updated on 20 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc