JSPM

eslint-plugin-require-in-package

1.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 70206
  • Score
    100M100P100Q160122F
  • License MIT

ESLint rule that validates ES6 imports are defined in local package.json

Package Exports

  • eslint-plugin-require-in-package

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-require-in-package) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

eslint-require-in-package

Rule Details

ES6 import only.

Given this:

import * as a from 'b';
import c from 'd';
import {e as f} from 'g';
import recast from 'recast';
import h from './i';

It will check dependencies, devDependencies, and peerDependencies for the existance of b, d, g, and recast. If they are not found, this message will print:

1:1  error  `b` : is not a dependency in the local package.json  require-in-package

Usage

npm install eslint-plugin-require-in-package

.eslintrc

{
  "parser": "babel-eslint",
  "env": {
    "node": true,
    "es6": true,
    "mocha": true
  },
  "ecmaFeatures": {
    "modules": true
  },
  "plugins": ["require-in-package"],
  // 0 - turn rule off
  // 1 - rule generates warnings
  // 2 - rule generates errors
  "rules": {
    "require-in-package/require-in-package": 2
  }
}