We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package.json
Since Nx is more or less a replacement for good ol' scripts, I keep its project-specific configuration in package.json:
{ "name": "foo", "nx": { "targets": { "fun": { "executor": "nx:run-commands", "options": { "command": "rimraf /" } } } } }
Currently the plugin doesn't check it for configuration:
knip/packages/knip/src/plugins/nx/index.ts
Line 13 in 1ecdf80
So Knip errors with:
Unused devDependencies rimraf package.json
Just in case, it has the exact same shape as project.json, just one level deeper, under nx.
project.json
nx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Since Nx is more or less a replacement for good ol' scripts, I keep its project-specific configuration in
package.json
:Currently the plugin doesn't check it for configuration:
knip/packages/knip/src/plugins/nx/index.ts
Line 13 in 1ecdf80
So Knip errors with:
Just in case, it has the exact same shape as
project.json
, just one level deeper, undernx
.The text was updated successfully, but these errors were encountered: