Socket
Socket
Sign inDemoInstall

@jsenv/eslint-import-resolver

Package Overview
Dependencies
2
Maintainers
2
Versions
59
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @jsenv/eslint-import-resolver

importMap resolution for eslint


Version published
Weekly downloads
347
increased by26.18%
Maintainers
2
Created
Weekly downloads
 

Changelog

Source

37.1.0

  • Fix autoreload during dev
  • Add urlInfo.contentLength

Readme

Source

jsenv-eslint-import-resolver

github package npm package github ci codecov coverage

importMap resolution for eslint.

Table of contents

Presentation

@jsenv/eslint-import-resolver enables importMap resolution for eslint.

— see importMap spec on github

Installation

Follow the steps below to install @jsenv/eslint-import-resolver in your project.

Step 1 - Install eslint plugin import package

npm install --save-dev eslint-plugin-import@2.18.2

— see eslint-plugin-import on github

Step 2 - Install jsenv import resolver package

If you never installed a jsenv package, read Installing a jsenv package before going further.

This documentation is up-to-date with a specific version so prefer any of the following commands

npm install --save-dev @jsenv/eslint-import-resolver@7.0.0
yarn add --dev @jsenv/eslint-import-resolver@7.0.0

Step 3 - Configure eslint

  • Your eslint config must enable eslint-plugin-import
  • Your eslint config must use @jsenv/eslint-import-resolver resolver

It means your minimal .eslintrc.js file looks like this:

module.exports = {
  plugins: ["import"],
  settings: {
    "import/resolver": {
      [`${__dirname}/node_modules/@jsenv/eslint-import-resolver/dist/commonjs/main.js`]: {
        projectDirectoryPath: __dirname,
      },
    },
  },
}

FAQs

Last updated on 27 Oct 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc