@coderwyd/eslint-config 2.6.3 → 2.6.4

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
@@ -37,10 +37,10 @@ var import_helpers = require("yargs/helpers");
37
37
  var import_picocolors = __toESM(require("picocolors"), 1);
38
38
 
39
39
  // package.json
40
- var version = "2.6.3";
40
+ var version = "2.6.4";
41
41
  var devDependencies = {
42
42
  "@antfu/ni": "^0.22.1",
43
- "@eslint-react/eslint-plugin": "^1.9.1",
43
+ "@eslint-react/eslint-plugin": "^1.10.0",
44
44
  "@eslint/config-inspector": "^0.5.2",
45
45
  "@stylistic/eslint-plugin-migrate": "^2.6.2",
46
46
  "@types/eslint": "^9.6.0",
package/dist/cli.js CHANGED
@@ -8,10 +8,10 @@ import { hideBin } from "yargs/helpers";
8
8
  import c from "picocolors";
9
9
 
10
10
  // package.json
11
- var version = "2.6.3";
11
+ var version = "2.6.4";
12
12
  var devDependencies = {
13
13
  "@antfu/ni": "^0.22.1",
14
- "@eslint-react/eslint-plugin": "^1.9.1",
14
+ "@eslint-react/eslint-plugin": "^1.10.0",
15
15
  "@eslint/config-inspector": "^0.5.2",
16
16
  "@stylistic/eslint-plugin-migrate": "^2.6.2",
17
17
  "@types/eslint": "^9.6.0",
package/dist/index.cjs CHANGED
@@ -1504,39 +1504,6 @@ function perfectionist() {
1504
1504
  "perfectionist/sort-named-imports": [
1505
1505
  "warn",
1506
1506
  { groupKind: "values-first" }
1507
- ],
1508
- "perfectionist/sort-vue-attributes": [
1509
- "error",
1510
- {
1511
- // Based on: https://vuejs.org/style-guide/rules-recommended.html#element-attribute-order
1512
- customGroups: {
1513
- CONDITIONALS: "v-*(else-if|if|else|show|cloak)",
1514
- CONTENT: "v-*(html|text)",
1515
- DEFINITION: "*(is|:is|v-is)",
1516
- // OTHER_DIRECTIVES e.g. 'v-custom-directive'
1517
- EVENTS: "*(v-on|@*)",
1518
- GLOBAL: "*(:id|id)",
1519
- LIST_RENDERING: "v-for",
1520
- RENDER_MODIFIERS: "v-*(pre|once)",
1521
- SLOT: "*(v-slot|slot)",
1522
- TWO_WAY_BINDING: "*(v-model|v-model:*)",
1523
- UNIQUE: "*(ref|key|:ref|:key)"
1524
- },
1525
- groups: [
1526
- "DEFINITION",
1527
- "LIST_RENDERING",
1528
- "CONDITIONALS",
1529
- "RENDER_MODIFIERS",
1530
- "GLOBAL",
1531
- "UNIQUE",
1532
- "SLOT",
1533
- "TWO_WAY_BINDING",
1534
- "unknown",
1535
- "EVENTS",
1536
- "CONTENT"
1537
- ],
1538
- type: "natural"
1539
- }
1540
1507
  ]
1541
1508
  }
1542
1509
  }
package/dist/index.js CHANGED
@@ -1457,39 +1457,6 @@ function perfectionist() {
1457
1457
  "perfectionist/sort-named-imports": [
1458
1458
  "warn",
1459
1459
  { groupKind: "values-first" }
1460
- ],
1461
- "perfectionist/sort-vue-attributes": [
1462
- "error",
1463
- {
1464
- // Based on: https://vuejs.org/style-guide/rules-recommended.html#element-attribute-order
1465
- customGroups: {
1466
- CONDITIONALS: "v-*(else-if|if|else|show|cloak)",
1467
- CONTENT: "v-*(html|text)",
1468
- DEFINITION: "*(is|:is|v-is)",
1469
- // OTHER_DIRECTIVES e.g. 'v-custom-directive'
1470
- EVENTS: "*(v-on|@*)",
1471
- GLOBAL: "*(:id|id)",
1472
- LIST_RENDERING: "v-for",
1473
- RENDER_MODIFIERS: "v-*(pre|once)",
1474
- SLOT: "*(v-slot|slot)",
1475
- TWO_WAY_BINDING: "*(v-model|v-model:*)",
1476
- UNIQUE: "*(ref|key|:ref|:key)"
1477
- },
1478
- groups: [
1479
- "DEFINITION",
1480
- "LIST_RENDERING",
1481
- "CONDITIONALS",
1482
- "RENDER_MODIFIERS",
1483
- "GLOBAL",
1484
- "UNIQUE",
1485
- "SLOT",
1486
- "TWO_WAY_BINDING",
1487
- "unknown",
1488
- "EVENTS",
1489
- "CONTENT"
1490
- ],
1491
- type: "natural"
1492
- }
1493
1460
  ]
1494
1461
  }
1495
1462
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coderwyd/eslint-config",
3
3
  "type": "module",
4
- "version": "2.6.3",
4
+ "version": "2.6.4",
5
5
  "description": "Donny's ESLint config",
6
6
  "author": "Donny Wang <donny526@outlook.com> (https://github.com/coderwyd/)",
7
7
  "license": "MIT",
@@ -73,7 +73,7 @@
73
73
  "@toml-tools/parser": "^1.0.0",
74
74
  "@typescript-eslint/eslint-plugin": "^8.0.1",
75
75
  "@typescript-eslint/parser": "^8.0.1",
76
- "@vitest/eslint-plugin": "^1.0.0",
76
+ "@vitest/eslint-plugin": "^1.0.1",
77
77
  "eslint-config-flat-gitignore": "^0.1.8",
78
78
  "eslint-merge-processors": "^0.1.0",
79
79
  "eslint-plugin-antfu": "^2.3.4",
@@ -104,7 +104,7 @@
104
104
  },
105
105
  "devDependencies": {
106
106
  "@antfu/ni": "^0.22.1",
107
- "@eslint-react/eslint-plugin": "^1.9.1",
107
+ "@eslint-react/eslint-plugin": "^1.10.0",
108
108
  "@eslint/config-inspector": "^0.5.2",
109
109
  "@stylistic/eslint-plugin-migrate": "^2.6.2",
110
110
  "@types/eslint": "^9.6.0",