You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

eslint-plugin-sort-keys

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-sort-keys

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

2.3.5
latest
Source
npmnpm
Version published
Maintainers
1
Created
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

eslint

FAQs

Package last updated on 12 Aug 2021

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