Registry / devops / eslint-plugin-import-path-lint-plugin

eslint-plugin-import-path-lint-plugin

JSON →
library0.1.4jsnpmunverified

ESLint plugin for linting import paths in JavaScript/TypeScript projects. Current version 0.1.4, no set release cadence. A minimal plugin skeleton with no documented rules — developers may confuse it with more mature alternatives like eslint-plugin-import or eslint-plugin-import-path. Requires ESLint >=7 and Node.js ^14.17.0 || ^16.0.0 || >=18.0.0.

devops
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Plugin is CommonJS only; no ESM or TypeScript types provided.

const importPathLintPlugin = require('eslint-plugin-import-path-lint-plugin');

ESLint automatically strips 'eslint-plugin-' prefix; both forms work but the unprefixed version is conventional.

// Add to .eslintrc plugins array: 'import-path-lint-plugin'

No actual rules documented in the plugin as of v0.1.4. This is a common footgun — developers expect non-existent rules.

// In .eslintrc rules object: 'import-path-lint-plugin/rule-name': 2

Demonstrates installation and configuration of the plugin in an ESLint project, but notes that no rules are implemented yet.

// Install: npm install eslint eslint-plugin-import-path-lint-plugin --save-dev // .eslintrc.json { "plugins": ["import-path-lint-plugin"], "rules": { "import-path-lint-plugin/rule-name": "error" } } // Run: npx eslint . // Note: The plugin currently has no implemented rules, so this will not produce any linting errors.
Debug
Known footguns
gotchaNo rules implemented as of v0.1.4 — the plugin is essentially a skeleton. Do not expect any linting behavior.
Upgrade
Version history

Breaking-change detection hasn't run for this library yet.

Audit
Security & dependencies

CVE tracking and dependency tree are planned for a later release.

Agent activity
6 hits · last 30 days
gptbot
3
ahrefsbot
2
Resources