@vinicunca/eslint-config 2.14.0 → 2.15.1
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/index.cjs +13 -2
- package/dist/index.d.cts +1510 -82
- package/dist/index.d.ts +1510 -82
- package/dist/index.js +13 -2
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1371,7 +1371,10 @@ async function perfectionist() {
|
|
|
1371
1371
|
ERROR,
|
|
1372
1372
|
{ order: "asc", type: "natural" }
|
|
1373
1373
|
],
|
|
1374
|
-
"perfectionist/sort-vue-attributes": [OFF]
|
|
1374
|
+
"perfectionist/sort-vue-attributes": [OFF],
|
|
1375
|
+
"perfectionist/sort-objects": OFF,
|
|
1376
|
+
"perfectionist/sort-object-types": OFF,
|
|
1377
|
+
"perfectionist/sort-interfaces": OFF
|
|
1375
1378
|
}
|
|
1376
1379
|
}
|
|
1377
1380
|
];
|
|
@@ -1642,7 +1645,9 @@ async function sonar() {
|
|
|
1642
1645
|
sonar: import_eslint_plugin_sonarjs.default
|
|
1643
1646
|
},
|
|
1644
1647
|
rules: {
|
|
1645
|
-
...import_eslint_plugin_sonarjs.default.configs.recommended.rules
|
|
1648
|
+
...import_eslint_plugin_sonarjs.default.configs.recommended.rules,
|
|
1649
|
+
"sonar/todo-tag": OFF,
|
|
1650
|
+
"sonar/pseudo-random": OFF
|
|
1646
1651
|
}
|
|
1647
1652
|
}
|
|
1648
1653
|
];
|
|
@@ -2557,6 +2562,12 @@ async function yaml(options = {}) {
|
|
|
2557
2562
|
} : {},
|
|
2558
2563
|
...overrides
|
|
2559
2564
|
}
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
files: ["pnpm-workspace.yaml"],
|
|
2568
|
+
rules: {
|
|
2569
|
+
"yaml/sort-keys": ERROR
|
|
2570
|
+
}
|
|
2560
2571
|
}
|
|
2561
2572
|
];
|
|
2562
2573
|
}
|