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

eslint-plugin-simple-import-sort

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-simple-import-sort - npm Package Versions

12

3.1.0

Diff

Changelog

Source

Version 3.1.0 (2019-03-30)

  • Added: Support for indentation in Vue <script> tags.
lydell
published 3.0.0 •

Changelog

Source

Version 3.0.0 (2019-02-02)

  • Changed: @/foo imports and similar are now treated as absolute imports. This is a common convention in Vue to avoid ../../../foo imports. Previously, @/foo ended up among npm packages. This was fixed by turning the absolute imports group into the “rest / trash can” group instead of the packages group. The packages group now only contain valid npm package names and Node.js builtins. The new grouping logic is:

    1. import "./setup": Side effect imports. (These are not sorted internally.)
    2. import react from "react": Packages (npm packages and Node.js builtins).
    3. import Error from "@/components/error.vue": Absolute imports, full URLs and other imports (such as Vue-style @/foo ones).
    4. import a from "./a": Relative imports.
lydell
published 2.1.0 •

Changelog

Source

Version 2.1.0 (2019-01-26)

  • Added: [TypeScript] support, via [@typescript-eslint/parser].
lydell
published 2.0.0 •

Changelog

Source

Version 2.0.0 (2018-11-30)

  • Changed: [Flow type imports] are no longer put in their own group at the top. Type imports from npm packages are grouped among regular npm imports, relative type imports are group among regular relative imports, and so on. The reason for this change is the same as for [sorting on from] – to avoid import “jumps” when they change. Previously, changing import type { User } from "./user" into import { type User, getUser } from "./user" caused the line to jump from the top of the file (the type imports group) to further down (the relative imports group). Now it stays in the relative imports group in both cases.
lydell
published 1.0.2 •

Changelog

Source

Version 1.0.2 (2018-11-18)

  • Update readme.
lydell
published 1.0.1 •

Changelog

Source

Version 1.0.1 (2018-11-18)

  • Update readme.
lydell
published 1.0.0 •

Changelog

Source

Version 1.0.0 (2018-11-18)

  • Initial release.
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