zixulu 1.70.2 → 1.70.3
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.js
CHANGED
|
@@ -312,6 +312,7 @@ const config = {
|
|
|
312
312
|
tabWidth: 4,
|
|
313
313
|
arrowParens: "avoid",
|
|
314
314
|
endOfLine: "lf",
|
|
315
|
+
printWidth: 160,
|
|
315
316
|
plugins: ["./prettier-plugin-sort-imports.mjs"],
|
|
316
317
|
}
|
|
317
318
|
|
|
@@ -4306,7 +4307,7 @@ async function getEditorExtensions({ source }) {
|
|
|
4306
4307
|
let data = [];
|
|
4307
4308
|
if ("Online" !== source) {
|
|
4308
4309
|
const output = await execAsync(`${source} --list-extensions`);
|
|
4309
|
-
data = output.split("\n").map((item)=>item.trim()).filter(Boolean);
|
|
4310
|
+
data = output.split("\n").map((item)=>item.trim()).filter(Boolean).filter((item)=>"menglong.cursor-infinity" !== item);
|
|
4310
4311
|
} else {
|
|
4311
4312
|
const response = await fetch("https://luzixu.geskj.com/extensions.json");
|
|
4312
4313
|
data = await response.json();
|