eslint-plugin-sort
Advanced tools
Comparing version 1.4.0 to 1.5.0
@@ -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 @@ ] |
24098