@kitschpatrol/eslint-config 5.5.0 → 5.7.0
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/bin/cli.js +8 -4
- package/dist/index.d.ts +791 -335
- package/dist/index.js +106 -22
- package/package.json +36 -35
- package/readme.md +14 -14
package/bin/cli.js
CHANGED
|
@@ -5138,7 +5138,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
5138
5138
|
var yargs_default = Yargs;
|
|
5139
5139
|
|
|
5140
5140
|
// ../../package.json
|
|
5141
|
-
var version = "5.
|
|
5141
|
+
var version = "5.7.0";
|
|
5142
5142
|
|
|
5143
5143
|
// ../../src/execa-utilities.ts
|
|
5144
5144
|
function isErrorExecaError(error) {
|
|
@@ -5184,7 +5184,7 @@ function stringify(passedObj, options = {}) {
|
|
|
5184
5184
|
).slice(2, -3);
|
|
5185
5185
|
const maxLength = indent === "" ? Infinity : options.maxLength === void 0 ? 80 : options.maxLength;
|
|
5186
5186
|
let { replacer } = options;
|
|
5187
|
-
return function _stringify(obj, currentIndent, reserved) {
|
|
5187
|
+
return (function _stringify(obj, currentIndent, reserved) {
|
|
5188
5188
|
if (obj && typeof obj.toJSON === "function") {
|
|
5189
5189
|
obj = obj.toJSON();
|
|
5190
5190
|
}
|
|
@@ -5250,7 +5250,7 @@ ${currentIndent}`
|
|
|
5250
5250
|
}
|
|
5251
5251
|
}
|
|
5252
5252
|
return string;
|
|
5253
|
-
}(passedObj, "", 0);
|
|
5253
|
+
})(passedObj, "", 0);
|
|
5254
5254
|
}
|
|
5255
5255
|
|
|
5256
5256
|
// ../../src/json-utilities.ts
|
|
@@ -5833,6 +5833,8 @@ var commandDefinition = {
|
|
|
5833
5833
|
commands: [
|
|
5834
5834
|
{
|
|
5835
5835
|
name: "eslint",
|
|
5836
|
+
// Consider '--concurrency', 'auto'
|
|
5837
|
+
// Didn't benchmark particularly fast in September 2025
|
|
5836
5838
|
optionFlags: ["--fix"],
|
|
5837
5839
|
receivePositionalArguments: true
|
|
5838
5840
|
}
|
|
@@ -5849,6 +5851,8 @@ var commandDefinition = {
|
|
|
5849
5851
|
commands: [
|
|
5850
5852
|
{
|
|
5851
5853
|
name: "eslint",
|
|
5854
|
+
// Consider // Consider '--concurrency', 'auto'
|
|
5855
|
+
// Didn't benchmark particularly fast in September 2025
|
|
5852
5856
|
optionFlags: ["--max-warnings", "0"],
|
|
5853
5857
|
receivePositionalArguments: true
|
|
5854
5858
|
}
|
|
@@ -5871,7 +5875,7 @@ var commandDefinition = {
|
|
|
5871
5875
|
description: "Kitschpatrol's ESLint shared configuration tools.",
|
|
5872
5876
|
logColor: "magenta",
|
|
5873
5877
|
logPrefix: `[ESLint]`,
|
|
5874
|
-
name: "
|
|
5878
|
+
name: "ksc-eslint",
|
|
5875
5879
|
order: 4
|
|
5876
5880
|
};
|
|
5877
5881
|
|