Skip to content

Commit 6b75683

Browse files
authoredNov 4, 2024··
perf: optimize text-table by replacing regex with trimEnd (#19061)
* perf: optimize `text-table` by replacing regex with `trimEnd` * chore: remove unwanted code & change file location * refactor: remove unwanted code * refactor: remove unwanted code * chore: udpate eslint config * fix: table formatting
1 parent db0b844 commit 6b75683

File tree

3 files changed

+71
-5
lines changed

3 files changed

+71
-5
lines changed
 

‎lib/cli-engine/formatters/stylish.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
const chalk = require("chalk"),
88
util = require("node:util"),
9-
table = require("text-table");
9+
table = require("../../shared/text-table");
1010

1111
//------------------------------------------------------------------------------
1212
// Helpers
@@ -62,8 +62,8 @@ module.exports = function(results) {
6262
6363
return [
6464
"",
65-
message.line || 0,
66-
message.column || 0,
65+
String(message.line || 0),
66+
String(message.column || 0),
6767
messageType,
6868
message.message.replace(/([^ ])\.$/u, "$1"),
6969
chalk.dim(message.ruleId || "")

‎lib/shared/text-table.js

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/**
2+
* @fileoverview Optimized version of the `text-table` npm module to improve performance by replacing inefficient regex-based
3+
* whitespace trimming with a modern built-in method.
4+
*
5+
* This modification addresses a performance issue reported in https://github.com/eslint/eslint/issues/18709
6+
*
7+
* The `text-table` module is published under the MIT License. For the original source, refer to:
8+
* https://www.npmjs.com/package/text-table.
9+
*/
10+
11+
/*
12+
*
13+
* This software is released under the MIT license:
14+
*
15+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
16+
* this software and associated documentation files (the "Software"), to deal in
17+
* the Software without restriction, including without limitation the rights to
18+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
19+
* the Software, and to permit persons to whom the Software is furnished to do so,
20+
* subject to the following conditions:
21+
*
22+
* The above copyright notice and this permission notice shall be included in all
23+
* copies or substantial portions of the Software.
24+
*
25+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
27+
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
28+
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
29+
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30+
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31+
*/
32+
33+
"use strict";
34+
35+
module.exports = function(rows_, opts) {
36+
const hsep = " ";
37+
const align = opts.align;
38+
const stringLength = opts.stringLength;
39+
40+
const sizes = rows_.reduce((acc, row) => {
41+
row.forEach((c, ix) => {
42+
const n = stringLength(c);
43+
44+
if (!acc[ix] || n > acc[ix]) {
45+
acc[ix] = n;
46+
}
47+
});
48+
return acc;
49+
}, []);
50+
51+
return rows_
52+
.map(row =>
53+
row
54+
.map((c, ix) => {
55+
const n = sizes[ix] - stringLength(c) || 0;
56+
const s = Array(Math.max(n + 1, 1)).join(" ");
57+
58+
if (align[ix] === "r") {
59+
return s + c;
60+
}
61+
62+
return c + s;
63+
})
64+
.join(hsep)
65+
.trimEnd())
66+
.join("\n");
67+
};

‎package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,7 @@
130130
"lodash.merge": "^4.6.2",
131131
"minimatch": "^3.1.2",
132132
"natural-compare": "^1.4.0",
133-
"optionator": "^0.9.3",
134-
"text-table": "^0.2.0"
133+
"optionator": "^0.9.3"
135134
},
136135
"devDependencies": {
137136
"@arethetypeswrong/cli": "^0.16.4",

0 commit comments

Comments
 (0)
Please sign in to comment.