Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@nx/linter
Advanced tools
The Linter plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.
@nx/linter is a package designed to integrate linting capabilities into Nx workspaces. It provides tools to ensure code quality and consistency across projects by leveraging popular linters like ESLint.
Linting Configuration
This feature allows you to configure linting scripts in your package.json file. By running `nx lint`, you can lint your entire workspace or specific projects.
{"scripts":{"lint":"nx lint"}}
Custom Lint Rules
You can extend and customize lint rules to fit your project's needs. This example shows how to extend the default Nx React configuration and add custom rules like disallowing console logs and enforcing semicolons.
{"eslintConfig":{"extends":["plugin:@nrwl/nx/react"],"rules":{"no-console":"error","semi":["error","always"]}}}
Linting Specific Projects
This feature allows you to lint specific projects within your Nx workspace. By specifying the project name, you can run linting only on that project, which can save time and resources.
{"scripts":{"lint:app":"nx lint my-app","lint:lib":"nx lint my-lib"}}
ESLint is a widely-used linting tool for JavaScript and TypeScript. It is highly configurable and can be extended with plugins and custom rules. Unlike @nx/linter, which is tailored for Nx workspaces, ESLint is a more general-purpose tool.
TSLint is a linter specifically for TypeScript. It has been deprecated in favor of ESLint, but it was once a popular choice for TypeScript projects. @nx/linter can integrate with ESLint to provide TypeScript linting, making it a more modern choice.
Stylelint is a linter for CSS and other style languages. It helps enforce consistent conventions and avoid errors in stylesheets. While @nx/linter focuses on JavaScript and TypeScript, Stylelint is specialized for styles.
@nx/linter has been renamed to @nx/eslint. Please use that instead.
@nx/linter will no longer be published in the future.
Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.
FAQs
The Linter plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.
The npm package @nx/linter receives a total of 1,003,017 weekly downloads. As such, @nx/linter popularity was classified as popular.
We found that @nx/linter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.