Socket
Socket
Sign inDemoInstall

eslint-plugin-sort-keys

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    eslint-plugin-sort-keys

Fork of eslint rule that sorts keys in objects (https://eslint.org/docs/rules/sort-keys) with autofix enabled


Version published
Weekly downloads
33K
decreased by-9.36%
Maintainers
1
Install size
52.3 kB
Created
Weekly downloads
 

Readme

Source

eslint-plugin-sort-keys

  • Similar to https://eslint.org/docs/rules/sort-keys but fixable
  • Fixed some issues and unit tests from the original fork https://github.com/leo-buneev/eslint-plugin-sort-keys-fix
npm install --save-dev eslint eslint-plugin-sort-keys
// eslint.config.js
module.exports = {
  plugins: ['sort-keys'],
  rules: {
    'sort-keys': 0, // disable default eslint sort-keys
    'sort-keys/sort-keys-fix': 1,
  },
}

TODO

  • Add support for key groups
  • Add css property key groups
  • Fix failed test cases

CHANGE LOG

  • 2.3.5: fix bug move comments incorrectly
  • 2.3.4: fix bug move comments incorrectly on the same line with the property
  • 2.3.3: fix bug move comments incorrectly on top of a multi-line property
  • 2.3.2: some typos and improvements, add change log
  • 2.3.1: add support for minKeys, update unit tests, dependencies and structure
  • 2.2.0: move comments together with the property
  • 2.1.0: fix bug multiple runs to complete the sort
  • 2.0.0: first publish from this forked repo, fix bug multiple runs to complete the sort

Keywords

FAQs

Last updated on 12 Aug 2021

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc