Socket
Socket
Sign inDemoInstall

@jsenv/importmap-eslint-resolver

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsenv/importmap-eslint-resolver

importmap resolution for eslint.


Version published
Weekly downloads
78
decreased by-75.7%
Maintainers
2
Weekly downloads
 
Created
Source

importmap-eslint-resolver

importmap resolution for eslint.

github package npm package github ci codecov coverage

Table of contents

Presentation

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

— see importmap spec on github

Installation

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

Step 1 - Install eslint-plugin-import

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

— see eslint-plugin-import on github

Step 2 - Install importmap-eslint-resolver

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/importmap-eslint-resolver@2.2.1

Step 3 - Configure eslint

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

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

module.exports = {
  plugins: ["import"],
  settings: {
    "import/resolver": {
      [require.resolve("@jsenv/importmap-eslint-resolver")]: {
        projectDirectoryUrl: __dirname,
      },
    },
  },
}

FAQs

Package last updated on 11 Mar 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc