🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

eslint-plugin-sort

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-sort - npm Package Compare versions

Comparing version

to
1.5.0

2

lib/index.js

@@ -34,3 +34,3 @@ "use strict";

}],
separator: "\n"
separator: ""
}],

@@ -37,0 +37,0 @@ "sort/object-properties": "warn"

{
"name": "eslint-plugin-sort",
"description": "Autofixable sort rules for ESLint.",
"version": "1.4.0",
"version": "1.5.0",
"author": "Mark Skelton",

@@ -28,2 +28,3 @@ "repository": {

"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"test": "jest"

@@ -30,0 +31,0 @@ },

@@ -174,3 +174,3 @@ # eslint-plugin-sort

If you are using sort groups, you have the option to provide a custom separator between sort groups. The default separator is a newline (`\n`), but you can customize it to any string you would like. For example, the following configuration would not separate groups by newlines.
If you are using sort groups, you have the option to provide a custom separator between sort groups. For example, the following configuration would separate groups by newlines.

@@ -185,3 +185,3 @@ ```json

],
"separator": ""
"separator": "\n"
}

@@ -188,0 +188,0 @@ ]