@jsse/eslint-config 0.2.11 → 0.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.cjs CHANGED
@@ -612,7 +612,7 @@ var CAC = class extends import_events.EventEmitter {
612
612
  var cac = (name = "") => new CAC(name);
613
613
 
614
614
  // package.json
615
- var version = "0.2.11";
615
+ var version = "0.2.12";
616
616
 
617
617
  // src/cli.ts
618
618
  var cli = cac("jsselint");
package/dist/cli.js CHANGED
@@ -588,7 +588,7 @@ var CAC = class extends EventEmitter {
588
588
  var cac = (name = "") => new CAC(name);
589
589
 
590
590
  // package.json
591
- var version = "0.2.11";
591
+ var version = "0.2.12";
592
592
 
593
593
  // src/cli.ts
594
594
  var cli = cac("jsselint");
package/dist/index.cjs CHANGED
@@ -11171,7 +11171,17 @@ var perfectionist = async () => {
11171
11171
  "perfectionist/sort-imports": [
11172
11172
  "error",
11173
11173
  {
11174
+ customGroups: {
11175
+ type: {
11176
+ react: ["react", "react-*"]
11177
+ },
11178
+ value: {
11179
+ react: ["react", "react-*"]
11180
+ }
11181
+ },
11174
11182
  groups: [
11183
+ "react",
11184
+ // react and react-* packages come first if they exist
11175
11185
  "type",
11176
11186
  "builtin",
11177
11187
  "external",
package/dist/index.js CHANGED
@@ -11099,7 +11099,17 @@ var perfectionist = async () => {
11099
11099
  "perfectionist/sort-imports": [
11100
11100
  "error",
11101
11101
  {
11102
+ customGroups: {
11103
+ type: {
11104
+ react: ["react", "react-*"]
11105
+ },
11106
+ value: {
11107
+ react: ["react", "react-*"]
11108
+ }
11109
+ },
11102
11110
  groups: [
11111
+ "react",
11112
+ // react and react-* packages come first if they exist
11103
11113
  "type",
11104
11114
  "builtin",
11105
11115
  "external",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jsse/eslint-config",
3
3
  "type": "module",
4
- "version": "0.2.11",
4
+ "version": "0.2.12",
5
5
  "description": "@jsse/eslint-config ~ WYSIWYG",
6
6
  "author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
7
7
  "license": "MIT",