Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-absolute-imports-only

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-absolute-imports-only

Eslint rule enforcing absolute imports

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.4K
increased by47.8%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-absolute-imports-only

Forked from eslint-plugin-absolute-imports

A (zero-dependency!) eslint plugin that enforces absolute imports on your codebase.

Prerequisites

You must have a baseUrl defined in either tsconfig.json or jsconfig.json. This plugin does not currently work with paths!

If you are working with a full-stack project, e.g. your Frontend project is at /front-end then you need to provide the path to tsconfig.json or jsconfig.json in eslint configuration file

Example:

...
settings: {
  "absolute-imports-only": {
    project: path.resolve(__dirname, 'tsconfig.json'),
  },
},

Setup

npm

npm i --save-dev eslint-plugin-absolute-imports-only

yarn

yarn add -D eslint-plugin-absolute-imports-only

.eslintrc

  • Add eslint-plugin-absolute-imports-only to your eslint plugins section
  • Add absolute-imports-only/only-absolute-imports to your eslint rules section

Options

jsOnly (boolean - default true)

Enabling this option will make the plugin only fix the imports for .(ts|tsx|js|jsx|json) files

minLevel (number - default 1)

Minimum level for the plugin to start fixing

Example:

  • If minLevel is set to 0 then all imports will be fixed

Eg: This below import statement

// src/components/componentB.tsx
import ComponentA from './componentA'

will be fixed to

// src/components/componentB.tsx
import ComponentA from 'src/components/componentA`
  • If minLevel is set to 1 then only files that are not in the same directory with current files are fixed

=> This below import statement won't be fixed

// src/components/componentB.tsx
import ComponentA from './componentA'
  • and so on :D

License

MIT

Keywords

FAQs

Package last updated on 21 Apr 2022

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