Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eslint-community/eslint-plugin-n
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v17.8.1
Choose a base ref
...
head repository: eslint-community/eslint-plugin-n
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v17.9.0
Choose a head ref
  • 3 commits
  • 11 files changed
  • 3 contributors

Commits on Jun 7, 2024

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1bcb006 View commit details

Commits on Jun 14, 2024

  1. feat: Add flag ignorePrivate to no-unpublished-x rules (#298)

    * feat: Add flag ignorePrivate to no-unpublished-x rules
    
    This rule make it possible to selectively disable/enable the rule in private packages
    
    * docs: Add documentation of ignorePrivate
    
    * Simplify property access and fallback
    IchordeDionysos authored Jun 14, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0609431 View commit details
  2. chore(master): release 17.9.0 (#299)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Jun 14, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    67bbfdf View commit details
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"17.8.1"}
{".":"17.9.0"}
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
pull-requests: write
id-token: write
steps:
- uses: google-github-actions/release-please-action@v4
- uses: googleapis/release-please-action@v4
id: release
with:
config-file: .github/release-please/config.json
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [17.9.0](https://github.com/eslint-community/eslint-plugin-n/compare/v17.8.1...v17.9.0) (2024-06-14)


### 🌟 Features

* Add flag ignorePrivate to no-unpublished-x rules ([#298](https://github.com/eslint-community/eslint-plugin-n/issues/298)) ([0609431](https://github.com/eslint-community/eslint-plugin-n/commit/0609431dabcd9402720071025c0206d2686e1d78))

## [17.8.1](https://github.com/eslint-community/eslint-plugin-n/compare/v17.8.0...v17.8.1) (2024-06-06)


28 changes: 28 additions & 0 deletions docs/rules/no-unpublished-import.md
Original file line number Diff line number Diff line change
@@ -66,6 +66,34 @@ In this way, the following code will not be reported:
import type foo from "foo";
```

### ignorePrivate

In a private package you sometimes want to disable checking for unpublished dependencies, e.g. if the package is not published.

However, there are situations where you want to mark it as private, though still ensure only published dependencies are used in your source code.
An example, for such a case would be a package that is deployed to a server.

Defaults to `true`.

package.json:

```json
{
"private": true,
...
}
```

```json
{
"rules": {
"n/no-unpublished-import": ["error", {
"ignorePrivate": true
}]
}
}
```

## 🔎 Implementation

- [Rule source](../../lib/rules/no-unpublished-import.js)
28 changes: 28 additions & 0 deletions docs/rules/no-unpublished-require.md
Original file line number Diff line number Diff line change
@@ -53,6 +53,34 @@ Please see the shared settings documentation for more information.
This can be configured in the rule options or as a shared setting [`settings.tryExtensions`](../shared-settings.md#tryextensions).
Please see the shared settings documentation for more information.

### ignorePrivate

In a private package you sometimes want to disable checking for unpublished dependencies, e.g. if the package is not published.

However, there are situations where you want to mark it as private, though still ensure only published dependencies are used in your source code.
An example, for such a case would be a package that is deployed to a server.

Defaults to `true`.

package.json:

```json
{
"private": true,
...
}
```

```json
{
"rules": {
"n/no-unpublished-import": ["error", {
"ignorePrivate": true
}]
}
}
```

## 🔎 Implementation

- [Rule source](../../lib/rules/no-unpublished-require.js)
9 changes: 4 additions & 5 deletions lib/rules/no-unpublished-import.js
Original file line number Diff line number Diff line change
@@ -29,6 +29,7 @@ module.exports = {
convertPath: getConvertPath.schema,
resolvePaths: getResolvePaths.schema,
ignoreTypeImport: { type: "boolean", default: false },
ignorePrivate: { type: "boolean", default: true },
},
additionalProperties: false,
},
@@ -38,17 +39,15 @@ module.exports = {
create(context) {
const filePath = context.filename ?? context.getFilename()
const options = context.options[0] || {}
const ignoreTypeImport =
options.ignoreTypeImport === void 0
? false
: options.ignoreTypeImport
const ignoreTypeImport = options.ignoreTypeImport ?? false
const ignorePrivate = options.ignorePrivate ?? true

if (filePath === "<input>") {
return {}
}

return visitImport(context, { ignoreTypeImport }, targets => {
checkPublish(context, filePath, targets)
checkPublish(context, filePath, targets, { ignorePrivate })
})
},
}
6 changes: 5 additions & 1 deletion lib/rules/no-unpublished-require.js
Original file line number Diff line number Diff line change
@@ -30,6 +30,7 @@ module.exports = {
convertPath: getConvertPath.schema,
resolvePaths: getResolvePaths.schema,
tryExtensions: getTryExtensions.schema,
ignorePrivate: { type: "boolean", default: true },
},
additionalProperties: false,
},
@@ -38,12 +39,15 @@ module.exports = {
},
create(context) {
const filePath = context.filename ?? context.getFilename()
const options = context.options[0] || {}
const ignorePrivate = options.ignorePrivate ?? true

if (filePath === "<input>") {
return {}
}

return visitRequire(context, {}, targets => {
checkPublish(context, filePath, targets)
checkPublish(context, filePath, targets, { ignorePrivate })
})
},
}
14 changes: 11 additions & 3 deletions lib/util/check-publish.js
Original file line number Diff line number Diff line change
@@ -18,17 +18,25 @@ const { getPackageJson } = require("./get-package-json")
* @param {import('eslint').Rule.RuleContext} context - A context to report.
* @param {string} filePath - The current file path.
* @param {import('./import-target.js')[]} targets - A list of target information to check.
* @param {{ignorePrivate: boolean}} options - Configuration options for checking for published files.
* @returns {void}
*/
exports.checkPublish = function checkPublish(context, filePath, targets) {
exports.checkPublish = function checkPublish(
context,
filePath,
targets,
options
) {
const packageJson = getPackageJson(filePath)
if (typeof packageJson?.filePath !== "string") {
return
}

// Private packages are never published so we don't need to check the imported dependencies either.
// Flag to ignore checking imported dependencies in private packages.
// For projects that need to be deployed to a server checking for imported dependencies may still be desireable
// while making it a private package.
// More information: https://docs.npmjs.com/cli/v8/configuring-npm/package-json#private
if (packageJson.private === true) {
if (options.ignorePrivate && packageJson.private === true) {
return
}

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-n",
"version": "17.8.1",
"version": "17.9.0",
"description": "Additional ESLint's rules for Node.js",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
8 changes: 8 additions & 0 deletions tests/lib/rules/no-unpublished-import.js
Original file line number Diff line number Diff line change
@@ -292,5 +292,13 @@ ruleTester.run("no-unpublished-import", rule, {
code: "import type foo from 'foo';",
errors: [{ messageId: "notPublished" }],
},

// devDependency in a private package
{
filename: fixture("private-package/index.js"),
code: "import bbb from 'bbb';",
errors: ['"bbb" is not published.'],
options: [{ ignorePrivate: false }],
},
],
})
8 changes: 8 additions & 0 deletions tests/lib/rules/no-unpublished-require.js
Original file line number Diff line number Diff line change
@@ -359,5 +359,13 @@ ruleTester.run("no-unpublished-require", rule, {
code: "require('../2/a.js');",
errors: ['"../2/a.js" is not published.'],
},

// devDependency in a private package
{
filename: fixture("private-package/index.js"),
code: "require('bbb');",
errors: ['"bbb" is not published.'],
options: [{ ignorePrivate: false }],
},
],
})