@powerlines/plugin-biome 0.2.462 → 0.2.464
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 +84 -1
- package/dist/index.mjs +82 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.mjs +1 -1
- package/dist/types/plugin.mjs +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -1 +1,84 @@
|
|
|
1
|
-
Object.defineProperties(exports,{__esModule:{value
|
|
1
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
|
+
let _stryke_cli_execute = require("@stryke/cli/execute");
|
|
3
|
+
let _stryke_fs_exists = require("@stryke/fs/exists");
|
|
4
|
+
let _stryke_fs_package_fns = require("@stryke/fs/package-fns");
|
|
5
|
+
let _stryke_path_join = require("@stryke/path/join");
|
|
6
|
+
|
|
7
|
+
//#region src/index.ts
|
|
8
|
+
/**
|
|
9
|
+
* A Powerlines plugin to assist in linting a project with Biome.
|
|
10
|
+
*/
|
|
11
|
+
function plugin(options = {}) {
|
|
12
|
+
return {
|
|
13
|
+
name: "biome",
|
|
14
|
+
async config() {
|
|
15
|
+
this.debug("Providing default configuration for the Powerlines `biome` linting plugin.");
|
|
16
|
+
let configFile = options.configFile;
|
|
17
|
+
if (!configFile) if ((0, _stryke_fs_exists.existsSync)((0, _stryke_path_join.joinPaths)(this.config.cwd ?? "./", this.config.root, "biome.json"))) configFile = (0, _stryke_path_join.joinPaths)(this.config.cwd ?? "./", this.config.root, "biome.json");
|
|
18
|
+
else if ((0, _stryke_fs_exists.existsSync)((0, _stryke_path_join.joinPaths)(this.config.cwd ?? "./", this.config.root, "biome.jsonc"))) configFile = (0, _stryke_path_join.joinPaths)(this.config.cwd ?? "./", this.config.root, "biome.jsonc");
|
|
19
|
+
else if ((0, _stryke_fs_exists.existsSync)((0, _stryke_path_join.joinPaths)(this.config.cwd ?? "./", "biome.json"))) configFile = (0, _stryke_path_join.joinPaths)(this.config.cwd ?? "./", "biome.json");
|
|
20
|
+
else if ((0, _stryke_fs_exists.existsSync)((0, _stryke_path_join.joinPaths)(this.config.cwd ?? "./", "biome.jsonc"))) configFile = (0, _stryke_path_join.joinPaths)(this.config.cwd ?? "./", "biome.jsonc");
|
|
21
|
+
else throw new Error(`No Biome configuration file found. Please specify a valid config file path in the Biome plugin's \`configFile\` options.`);
|
|
22
|
+
return { biome: {
|
|
23
|
+
configFile,
|
|
24
|
+
maxDiagnostics: 20,
|
|
25
|
+
diagnosticLevel: "info",
|
|
26
|
+
fix: true,
|
|
27
|
+
logKind: "pretty",
|
|
28
|
+
format: "stylish",
|
|
29
|
+
vcsEnabled: true,
|
|
30
|
+
vcsDefaultBranch: "main",
|
|
31
|
+
...options
|
|
32
|
+
} };
|
|
33
|
+
},
|
|
34
|
+
async lint() {
|
|
35
|
+
this.debug(`Linting project files with Biome.`);
|
|
36
|
+
const args = [];
|
|
37
|
+
if (this.config.biome.params) args.push(...this.config.biome.params.split(" ").filter(Boolean));
|
|
38
|
+
if (!args.includes("--log-level")) args.push("--log-level", !this.config.logLevel || this.config.logLevel === "trace" || this.config.logLevel === "debug" ? "info" : this.config.logLevel);
|
|
39
|
+
if (!args.includes("--verbose") && (this.config.logLevel === "trace" || this.config.logLevel === "debug" || this.config.mode === "development")) args.push("--verbose");
|
|
40
|
+
if (this.config.biome.fix !== false && !args.includes("--fix")) {
|
|
41
|
+
args.push("--fix");
|
|
42
|
+
if (this.config.biome.fix === "unsafe" && !args.includes("--unsafe")) args.push("--unsafe");
|
|
43
|
+
}
|
|
44
|
+
if (this.config.biome.configFile && !args.includes("--config-path")) args.push("--config-path", this.config.biome.configFile);
|
|
45
|
+
if (this.config.biome.changed && !args.includes("--changed")) args.push("--changed");
|
|
46
|
+
if (this.config.biome.staged && !args.includes("--staged")) args.push("--staged");
|
|
47
|
+
if (this.config.biome.ignorePatterns && !args.includes("--ignore")) args.push("--ignore", Array.isArray(this.config.biome.ignorePatterns) ? this.config.biome.ignorePatterns.join(",") : this.config.biome.ignorePatterns);
|
|
48
|
+
if (this.config.biome.suppress && !args.includes("--suppress")) args.push("--suppress");
|
|
49
|
+
if (this.config.biome.only && !args.includes("--only")) args.push("--only", Array.isArray(this.config.biome.only) ? this.config.biome.only.join(",") : this.config.biome.only);
|
|
50
|
+
if (this.config.biome.skip && !args.includes("--skip")) args.push("--skip", Array.isArray(this.config.biome.skip) ? this.config.biome.skip.join(",") : this.config.biome.skip);
|
|
51
|
+
if (this.config.biome.stdinFilePath && !args.includes("--stdin-file-path")) args.push("--stdin-file-path", this.config.biome.stdinFilePath);
|
|
52
|
+
if (this.config.biome.maxDiagnostics !== void 0 && !args.includes("--max-diagnostics")) args.push("--max-diagnostics", this.config.biome.maxDiagnostics.toString());
|
|
53
|
+
if (this.config.biome.diagnosticLevel && !args.includes("--diagnostic-level")) args.push("--diagnostic-level", this.config.biome.diagnosticLevel);
|
|
54
|
+
if (this.config.biome.errorOnWarnings && !args.includes("--error-on-warnings")) args.push("--error-on-warnings");
|
|
55
|
+
if (this.config.biome.jsonParseAllowComments && !args.includes("--json-parse-allow-comments")) args.push("--json-parse-allow-comments");
|
|
56
|
+
if (this.config.biome.jsonParseAllowTrailingCommas && !args.includes("--json-parse-allow-trailing-commas")) args.push("--json-parse-allow-trailing-commas");
|
|
57
|
+
if (this.config.biome.reporter && !args.includes("--reporter")) args.push("--reporter", this.config.biome.reporter);
|
|
58
|
+
if (this.config.biome.logKind && !args.includes("--log-kind")) args.push("--log-kind", this.config.biome.logKind);
|
|
59
|
+
if (this.config.biome.filesMaxSize && !args.includes("--files-max-size")) args.push("--files-max-size", this.config.biome.filesMaxSize.toString());
|
|
60
|
+
if (this.config.biome.filesIgnoreUnknown && !args.includes("--files-ignore-unknown")) args.push("--files-ignore-unknown");
|
|
61
|
+
if (this.config.biome.vcsEnabled && !args.includes("--vcs-enabled")) {
|
|
62
|
+
args.push("--vcs-enabled");
|
|
63
|
+
if (!args.includes("--vcs-root")) args.push("--vcs-root", this.config.cwd);
|
|
64
|
+
if (this.config.biome.vcsClientKind && !args.includes("--vcs-client-kind")) args.push("--vcs-client-kind", this.config.biome.vcsClientKind);
|
|
65
|
+
if (this.config.biome.vcsUseIgnoreFile && !args.includes("--vcs-use-ignore-file")) args.push("--vcs-use-ignore-file");
|
|
66
|
+
if (this.config.biome.vcsDefaultBranch && !args.includes("--vcs-default-branch")) args.push("--vcs-default-branch", this.config.biome.vcsDefaultBranch);
|
|
67
|
+
}
|
|
68
|
+
if (!this.config.biome.biomePath) {
|
|
69
|
+
const isBiomeListed = await (0, _stryke_fs_package_fns.isPackageListed)("@biomejs/biome", this.config.root);
|
|
70
|
+
args.unshift(isBiomeListed ? "./" : (0, _stryke_path_join.joinPaths)(this.config.root, "src"));
|
|
71
|
+
const result = await (0, _stryke_cli_execute.executePackage)("biome", args, isBiomeListed ? (0, _stryke_path_join.joinPaths)(this.config.cwd, this.config.root) : this.config.root);
|
|
72
|
+
if (result.failed) throw new Error(`Biome process exited with code ${result.exitCode}.`);
|
|
73
|
+
} else {
|
|
74
|
+
args.unshift(this.config.biome.biomePath, (0, _stryke_path_join.joinPaths)(this.config.root, "src"));
|
|
75
|
+
const result = await (0, _stryke_cli_execute.execute)(args.join(" "), this.config.cwd);
|
|
76
|
+
if (result.failed) throw new Error(`Biome process exited with code ${result.exitCode}.`);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
//#endregion
|
|
83
|
+
exports.default = plugin;
|
|
84
|
+
exports.plugin = plugin;
|
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,83 @@
|
|
|
1
|
-
import{execute
|
|
1
|
+
import { execute, executePackage } from "@stryke/cli/execute";
|
|
2
|
+
import { existsSync } from "@stryke/fs/exists";
|
|
3
|
+
import { isPackageListed } from "@stryke/fs/package-fns";
|
|
4
|
+
import { joinPaths } from "@stryke/path/join";
|
|
5
|
+
|
|
6
|
+
//#region src/index.ts
|
|
7
|
+
/**
|
|
8
|
+
* A Powerlines plugin to assist in linting a project with Biome.
|
|
9
|
+
*/
|
|
10
|
+
function plugin(options = {}) {
|
|
11
|
+
return {
|
|
12
|
+
name: "biome",
|
|
13
|
+
async config() {
|
|
14
|
+
this.debug("Providing default configuration for the Powerlines `biome` linting plugin.");
|
|
15
|
+
let configFile = options.configFile;
|
|
16
|
+
if (!configFile) if (existsSync(joinPaths(this.config.cwd ?? "./", this.config.root, "biome.json"))) configFile = joinPaths(this.config.cwd ?? "./", this.config.root, "biome.json");
|
|
17
|
+
else if (existsSync(joinPaths(this.config.cwd ?? "./", this.config.root, "biome.jsonc"))) configFile = joinPaths(this.config.cwd ?? "./", this.config.root, "biome.jsonc");
|
|
18
|
+
else if (existsSync(joinPaths(this.config.cwd ?? "./", "biome.json"))) configFile = joinPaths(this.config.cwd ?? "./", "biome.json");
|
|
19
|
+
else if (existsSync(joinPaths(this.config.cwd ?? "./", "biome.jsonc"))) configFile = joinPaths(this.config.cwd ?? "./", "biome.jsonc");
|
|
20
|
+
else throw new Error(`No Biome configuration file found. Please specify a valid config file path in the Biome plugin's \`configFile\` options.`);
|
|
21
|
+
return { biome: {
|
|
22
|
+
configFile,
|
|
23
|
+
maxDiagnostics: 20,
|
|
24
|
+
diagnosticLevel: "info",
|
|
25
|
+
fix: true,
|
|
26
|
+
logKind: "pretty",
|
|
27
|
+
format: "stylish",
|
|
28
|
+
vcsEnabled: true,
|
|
29
|
+
vcsDefaultBranch: "main",
|
|
30
|
+
...options
|
|
31
|
+
} };
|
|
32
|
+
},
|
|
33
|
+
async lint() {
|
|
34
|
+
this.debug(`Linting project files with Biome.`);
|
|
35
|
+
const args = [];
|
|
36
|
+
if (this.config.biome.params) args.push(...this.config.biome.params.split(" ").filter(Boolean));
|
|
37
|
+
if (!args.includes("--log-level")) args.push("--log-level", !this.config.logLevel || this.config.logLevel === "trace" || this.config.logLevel === "debug" ? "info" : this.config.logLevel);
|
|
38
|
+
if (!args.includes("--verbose") && (this.config.logLevel === "trace" || this.config.logLevel === "debug" || this.config.mode === "development")) args.push("--verbose");
|
|
39
|
+
if (this.config.biome.fix !== false && !args.includes("--fix")) {
|
|
40
|
+
args.push("--fix");
|
|
41
|
+
if (this.config.biome.fix === "unsafe" && !args.includes("--unsafe")) args.push("--unsafe");
|
|
42
|
+
}
|
|
43
|
+
if (this.config.biome.configFile && !args.includes("--config-path")) args.push("--config-path", this.config.biome.configFile);
|
|
44
|
+
if (this.config.biome.changed && !args.includes("--changed")) args.push("--changed");
|
|
45
|
+
if (this.config.biome.staged && !args.includes("--staged")) args.push("--staged");
|
|
46
|
+
if (this.config.biome.ignorePatterns && !args.includes("--ignore")) args.push("--ignore", Array.isArray(this.config.biome.ignorePatterns) ? this.config.biome.ignorePatterns.join(",") : this.config.biome.ignorePatterns);
|
|
47
|
+
if (this.config.biome.suppress && !args.includes("--suppress")) args.push("--suppress");
|
|
48
|
+
if (this.config.biome.only && !args.includes("--only")) args.push("--only", Array.isArray(this.config.biome.only) ? this.config.biome.only.join(",") : this.config.biome.only);
|
|
49
|
+
if (this.config.biome.skip && !args.includes("--skip")) args.push("--skip", Array.isArray(this.config.biome.skip) ? this.config.biome.skip.join(",") : this.config.biome.skip);
|
|
50
|
+
if (this.config.biome.stdinFilePath && !args.includes("--stdin-file-path")) args.push("--stdin-file-path", this.config.biome.stdinFilePath);
|
|
51
|
+
if (this.config.biome.maxDiagnostics !== void 0 && !args.includes("--max-diagnostics")) args.push("--max-diagnostics", this.config.biome.maxDiagnostics.toString());
|
|
52
|
+
if (this.config.biome.diagnosticLevel && !args.includes("--diagnostic-level")) args.push("--diagnostic-level", this.config.biome.diagnosticLevel);
|
|
53
|
+
if (this.config.biome.errorOnWarnings && !args.includes("--error-on-warnings")) args.push("--error-on-warnings");
|
|
54
|
+
if (this.config.biome.jsonParseAllowComments && !args.includes("--json-parse-allow-comments")) args.push("--json-parse-allow-comments");
|
|
55
|
+
if (this.config.biome.jsonParseAllowTrailingCommas && !args.includes("--json-parse-allow-trailing-commas")) args.push("--json-parse-allow-trailing-commas");
|
|
56
|
+
if (this.config.biome.reporter && !args.includes("--reporter")) args.push("--reporter", this.config.biome.reporter);
|
|
57
|
+
if (this.config.biome.logKind && !args.includes("--log-kind")) args.push("--log-kind", this.config.biome.logKind);
|
|
58
|
+
if (this.config.biome.filesMaxSize && !args.includes("--files-max-size")) args.push("--files-max-size", this.config.biome.filesMaxSize.toString());
|
|
59
|
+
if (this.config.biome.filesIgnoreUnknown && !args.includes("--files-ignore-unknown")) args.push("--files-ignore-unknown");
|
|
60
|
+
if (this.config.biome.vcsEnabled && !args.includes("--vcs-enabled")) {
|
|
61
|
+
args.push("--vcs-enabled");
|
|
62
|
+
if (!args.includes("--vcs-root")) args.push("--vcs-root", this.config.cwd);
|
|
63
|
+
if (this.config.biome.vcsClientKind && !args.includes("--vcs-client-kind")) args.push("--vcs-client-kind", this.config.biome.vcsClientKind);
|
|
64
|
+
if (this.config.biome.vcsUseIgnoreFile && !args.includes("--vcs-use-ignore-file")) args.push("--vcs-use-ignore-file");
|
|
65
|
+
if (this.config.biome.vcsDefaultBranch && !args.includes("--vcs-default-branch")) args.push("--vcs-default-branch", this.config.biome.vcsDefaultBranch);
|
|
66
|
+
}
|
|
67
|
+
if (!this.config.biome.biomePath) {
|
|
68
|
+
const isBiomeListed = await isPackageListed("@biomejs/biome", this.config.root);
|
|
69
|
+
args.unshift(isBiomeListed ? "./" : joinPaths(this.config.root, "src"));
|
|
70
|
+
const result = await executePackage("biome", args, isBiomeListed ? joinPaths(this.config.cwd, this.config.root) : this.config.root);
|
|
71
|
+
if (result.failed) throw new Error(`Biome process exited with code ${result.exitCode}.`);
|
|
72
|
+
} else {
|
|
73
|
+
args.unshift(this.config.biome.biomePath, joinPaths(this.config.root, "src"));
|
|
74
|
+
const result = await execute(args.join(" "), this.config.cwd);
|
|
75
|
+
if (result.failed) throw new Error(`Biome process exited with code ${result.exitCode}.`);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
//#endregion
|
|
82
|
+
export { plugin as default, plugin };
|
|
2
83
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { execute, executePackage } from \"@stryke/cli/execute\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { isPackageListed } from \"@stryke/fs/package-fns\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport { Plugin } from \"powerlines\";\nimport { BiomePluginContext, BiomePluginOptions } from \"./types/plugin\";\n\nexport * from \"./types\";\n\ndeclare module \"powerlines\" {\n interface Config {\n biome?: BiomePluginOptions;\n }\n}\n\n/**\n * A Powerlines plugin to assist in linting a project with Biome.\n */\nexport function plugin(\n options: BiomePluginOptions = {}\n): Plugin<BiomePluginContext> {\n return {\n name: \"biome\",\n async config() {\n this.debug(\n \"Providing default configuration for the Powerlines `biome` linting plugin.\"\n );\n\n let configFile = options.configFile;\n if (!configFile) {\n if (\n existsSync(\n joinPaths(this.config.cwd ?? \"./\", this.config.root, \"biome.json\")\n )\n ) {\n configFile = joinPaths(\n this.config.cwd ?? \"./\",\n this.config.root,\n \"biome.json\"\n );\n } else if (\n existsSync(\n joinPaths(this.config.cwd ?? \"./\", this.config.root, \"biome.jsonc\")\n )\n ) {\n configFile = joinPaths(\n this.config.cwd ?? \"./\",\n this.config.root,\n \"biome.jsonc\"\n );\n } else if (\n existsSync(joinPaths(this.config.cwd ?? \"./\", \"biome.json\"))\n ) {\n configFile = joinPaths(this.config.cwd ?? \"./\", \"biome.json\");\n } else if (\n existsSync(joinPaths(this.config.cwd ?? \"./\", \"biome.jsonc\"))\n ) {\n configFile = joinPaths(this.config.cwd ?? \"./\", \"biome.jsonc\");\n } else {\n throw new Error(\n `No Biome configuration file found. Please specify a valid config file path in the Biome plugin's \\`configFile\\` options.`\n );\n }\n }\n\n return {\n biome: {\n configFile,\n maxDiagnostics: 20,\n diagnosticLevel: \"info\",\n fix: true,\n logKind: \"pretty\",\n format: \"stylish\",\n vcsEnabled: true,\n vcsDefaultBranch: \"main\",\n ...options\n }\n };\n },\n async lint() {\n this.debug(`Linting project files with Biome.`);\n\n const args: string[] = [];\n\n if (this.config.biome.params) {\n args.push(...this.config.biome.params.split(\" \").filter(Boolean));\n }\n\n if (!args.includes(\"--log-level\")) {\n args.push(\n \"--log-level\",\n !this.config.logLevel ||\n this.config.logLevel === \"trace\" ||\n this.config.logLevel === \"debug\"\n ? \"info\"\n : this.config.logLevel\n );\n }\n\n if (\n !args.includes(\"--verbose\") &&\n (this.config.logLevel === \"trace\" ||\n this.config.logLevel === \"debug\" ||\n this.config.mode === \"development\")\n ) {\n args.push(\"--verbose\");\n }\n\n if (this.config.biome.fix !== false && !args.includes(\"--fix\")) {\n args.push(\"--fix\");\n if (this.config.biome.fix === \"unsafe\" && !args.includes(\"--unsafe\")) {\n args.push(\"--unsafe\");\n }\n }\n\n if (this.config.biome.configFile && !args.includes(\"--config-path\")) {\n args.push(\"--config-path\", this.config.biome.configFile);\n }\n\n if (this.config.biome.changed && !args.includes(\"--changed\")) {\n args.push(\"--changed\");\n }\n\n if (this.config.biome.staged && !args.includes(\"--staged\")) {\n args.push(\"--staged\");\n }\n\n if (this.config.biome.ignorePatterns && !args.includes(\"--ignore\")) {\n args.push(\n \"--ignore\",\n Array.isArray(this.config.biome.ignorePatterns)\n ? this.config.biome.ignorePatterns.join(\",\")\n : this.config.biome.ignorePatterns\n );\n }\n\n if (this.config.biome.suppress && !args.includes(\"--suppress\")) {\n args.push(\"--suppress\");\n }\n\n if (this.config.biome.only && !args.includes(\"--only\")) {\n args.push(\n \"--only\",\n Array.isArray(this.config.biome.only)\n ? this.config.biome.only.join(\",\")\n : this.config.biome.only\n );\n }\n\n if (this.config.biome.skip && !args.includes(\"--skip\")) {\n args.push(\n \"--skip\",\n Array.isArray(this.config.biome.skip)\n ? this.config.biome.skip.join(\",\")\n : this.config.biome.skip\n );\n }\n\n if (\n this.config.biome.stdinFilePath &&\n !args.includes(\"--stdin-file-path\")\n ) {\n args.push(\"--stdin-file-path\", this.config.biome.stdinFilePath);\n }\n\n if (\n this.config.biome.maxDiagnostics !== undefined &&\n !args.includes(\"--max-diagnostics\")\n ) {\n args.push(\n \"--max-diagnostics\",\n this.config.biome.maxDiagnostics.toString()\n );\n }\n\n if (\n this.config.biome.diagnosticLevel &&\n !args.includes(\"--diagnostic-level\")\n ) {\n args.push(\"--diagnostic-level\", this.config.biome.diagnosticLevel);\n }\n\n if (\n this.config.biome.errorOnWarnings &&\n !args.includes(\"--error-on-warnings\")\n ) {\n args.push(\"--error-on-warnings\");\n }\n\n if (\n this.config.biome.jsonParseAllowComments &&\n !args.includes(\"--json-parse-allow-comments\")\n ) {\n args.push(\"--json-parse-allow-comments\");\n }\n\n if (\n this.config.biome.jsonParseAllowTrailingCommas &&\n !args.includes(\"--json-parse-allow-trailing-commas\")\n ) {\n args.push(\"--json-parse-allow-trailing-commas\");\n }\n\n if (this.config.biome.reporter && !args.includes(\"--reporter\")) {\n args.push(\"--reporter\", this.config.biome.reporter);\n }\n\n if (this.config.biome.logKind && !args.includes(\"--log-kind\")) {\n args.push(\"--log-kind\", this.config.biome.logKind);\n }\n\n if (\n this.config.biome.filesMaxSize &&\n !args.includes(\"--files-max-size\")\n ) {\n args.push(\n \"--files-max-size\",\n this.config.biome.filesMaxSize.toString()\n );\n }\n\n if (\n this.config.biome.filesIgnoreUnknown &&\n !args.includes(\"--files-ignore-unknown\")\n ) {\n args.push(\"--files-ignore-unknown\");\n }\n\n if (this.config.biome.vcsEnabled && !args.includes(\"--vcs-enabled\")) {\n args.push(\"--vcs-enabled\");\n\n if (!args.includes(\"--vcs-root\")) {\n args.push(\"--vcs-root\", this.config.cwd);\n }\n\n if (\n this.config.biome.vcsClientKind &&\n !args.includes(\"--vcs-client-kind\")\n ) {\n args.push(\"--vcs-client-kind\", this.config.biome.vcsClientKind);\n }\n\n if (\n this.config.biome.vcsUseIgnoreFile &&\n !args.includes(\"--vcs-use-ignore-file\")\n ) {\n args.push(\"--vcs-use-ignore-file\");\n }\n\n if (\n this.config.biome.vcsDefaultBranch &&\n !args.includes(\"--vcs-default-branch\")\n ) {\n args.push(\"--vcs-default-branch\", this.config.biome.vcsDefaultBranch);\n }\n }\n\n if (!this.config.biome.biomePath) {\n const isBiomeListed = await isPackageListed(\n \"@biomejs/biome\",\n this.config.root\n );\n\n args.unshift(isBiomeListed ? \"./\" : joinPaths(this.config.root, \"src\"));\n\n const result = await executePackage(\n \"biome\",\n args,\n isBiomeListed\n ? joinPaths(this.config.cwd, this.config.root)\n : this.config.root\n );\n if (result.failed) {\n throw new Error(`Biome process exited with code ${result.exitCode}.`);\n }\n } else {\n args.unshift(\n this.config.biome.biomePath,\n joinPaths(this.config.root, \"src\")\n );\n\n const result = await execute(args.join(\" \"), this.config.cwd);\n if (result.failed) {\n throw new Error(`Biome process exited with code ${result.exitCode}.`);\n }\n }\n }\n };\n}\n\nexport default plugin;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { execute, executePackage } from \"@stryke/cli/execute\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { isPackageListed } from \"@stryke/fs/package-fns\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport { Plugin } from \"powerlines\";\nimport { BiomePluginContext, BiomePluginOptions } from \"./types/plugin\";\n\nexport * from \"./types\";\n\ndeclare module \"powerlines\" {\n interface Config {\n biome?: BiomePluginOptions;\n }\n}\n\n/**\n * A Powerlines plugin to assist in linting a project with Biome.\n */\nexport function plugin(\n options: BiomePluginOptions = {}\n): Plugin<BiomePluginContext> {\n return {\n name: \"biome\",\n async config() {\n this.debug(\n \"Providing default configuration for the Powerlines `biome` linting plugin.\"\n );\n\n let configFile = options.configFile;\n if (!configFile) {\n if (\n existsSync(\n joinPaths(this.config.cwd ?? \"./\", this.config.root, \"biome.json\")\n )\n ) {\n configFile = joinPaths(\n this.config.cwd ?? \"./\",\n this.config.root,\n \"biome.json\"\n );\n } else if (\n existsSync(\n joinPaths(this.config.cwd ?? \"./\", this.config.root, \"biome.jsonc\")\n )\n ) {\n configFile = joinPaths(\n this.config.cwd ?? \"./\",\n this.config.root,\n \"biome.jsonc\"\n );\n } else if (\n existsSync(joinPaths(this.config.cwd ?? \"./\", \"biome.json\"))\n ) {\n configFile = joinPaths(this.config.cwd ?? \"./\", \"biome.json\");\n } else if (\n existsSync(joinPaths(this.config.cwd ?? \"./\", \"biome.jsonc\"))\n ) {\n configFile = joinPaths(this.config.cwd ?? \"./\", \"biome.jsonc\");\n } else {\n throw new Error(\n `No Biome configuration file found. Please specify a valid config file path in the Biome plugin's \\`configFile\\` options.`\n );\n }\n }\n\n return {\n biome: {\n configFile,\n maxDiagnostics: 20,\n diagnosticLevel: \"info\",\n fix: true,\n logKind: \"pretty\",\n format: \"stylish\",\n vcsEnabled: true,\n vcsDefaultBranch: \"main\",\n ...options\n }\n };\n },\n async lint() {\n this.debug(`Linting project files with Biome.`);\n\n const args: string[] = [];\n\n if (this.config.biome.params) {\n args.push(...this.config.biome.params.split(\" \").filter(Boolean));\n }\n\n if (!args.includes(\"--log-level\")) {\n args.push(\n \"--log-level\",\n !this.config.logLevel ||\n this.config.logLevel === \"trace\" ||\n this.config.logLevel === \"debug\"\n ? \"info\"\n : this.config.logLevel\n );\n }\n\n if (\n !args.includes(\"--verbose\") &&\n (this.config.logLevel === \"trace\" ||\n this.config.logLevel === \"debug\" ||\n this.config.mode === \"development\")\n ) {\n args.push(\"--verbose\");\n }\n\n if (this.config.biome.fix !== false && !args.includes(\"--fix\")) {\n args.push(\"--fix\");\n if (this.config.biome.fix === \"unsafe\" && !args.includes(\"--unsafe\")) {\n args.push(\"--unsafe\");\n }\n }\n\n if (this.config.biome.configFile && !args.includes(\"--config-path\")) {\n args.push(\"--config-path\", this.config.biome.configFile);\n }\n\n if (this.config.biome.changed && !args.includes(\"--changed\")) {\n args.push(\"--changed\");\n }\n\n if (this.config.biome.staged && !args.includes(\"--staged\")) {\n args.push(\"--staged\");\n }\n\n if (this.config.biome.ignorePatterns && !args.includes(\"--ignore\")) {\n args.push(\n \"--ignore\",\n Array.isArray(this.config.biome.ignorePatterns)\n ? this.config.biome.ignorePatterns.join(\",\")\n : this.config.biome.ignorePatterns\n );\n }\n\n if (this.config.biome.suppress && !args.includes(\"--suppress\")) {\n args.push(\"--suppress\");\n }\n\n if (this.config.biome.only && !args.includes(\"--only\")) {\n args.push(\n \"--only\",\n Array.isArray(this.config.biome.only)\n ? this.config.biome.only.join(\",\")\n : this.config.biome.only\n );\n }\n\n if (this.config.biome.skip && !args.includes(\"--skip\")) {\n args.push(\n \"--skip\",\n Array.isArray(this.config.biome.skip)\n ? this.config.biome.skip.join(\",\")\n : this.config.biome.skip\n );\n }\n\n if (\n this.config.biome.stdinFilePath &&\n !args.includes(\"--stdin-file-path\")\n ) {\n args.push(\"--stdin-file-path\", this.config.biome.stdinFilePath);\n }\n\n if (\n this.config.biome.maxDiagnostics !== undefined &&\n !args.includes(\"--max-diagnostics\")\n ) {\n args.push(\n \"--max-diagnostics\",\n this.config.biome.maxDiagnostics.toString()\n );\n }\n\n if (\n this.config.biome.diagnosticLevel &&\n !args.includes(\"--diagnostic-level\")\n ) {\n args.push(\"--diagnostic-level\", this.config.biome.diagnosticLevel);\n }\n\n if (\n this.config.biome.errorOnWarnings &&\n !args.includes(\"--error-on-warnings\")\n ) {\n args.push(\"--error-on-warnings\");\n }\n\n if (\n this.config.biome.jsonParseAllowComments &&\n !args.includes(\"--json-parse-allow-comments\")\n ) {\n args.push(\"--json-parse-allow-comments\");\n }\n\n if (\n this.config.biome.jsonParseAllowTrailingCommas &&\n !args.includes(\"--json-parse-allow-trailing-commas\")\n ) {\n args.push(\"--json-parse-allow-trailing-commas\");\n }\n\n if (this.config.biome.reporter && !args.includes(\"--reporter\")) {\n args.push(\"--reporter\", this.config.biome.reporter);\n }\n\n if (this.config.biome.logKind && !args.includes(\"--log-kind\")) {\n args.push(\"--log-kind\", this.config.biome.logKind);\n }\n\n if (\n this.config.biome.filesMaxSize &&\n !args.includes(\"--files-max-size\")\n ) {\n args.push(\n \"--files-max-size\",\n this.config.biome.filesMaxSize.toString()\n );\n }\n\n if (\n this.config.biome.filesIgnoreUnknown &&\n !args.includes(\"--files-ignore-unknown\")\n ) {\n args.push(\"--files-ignore-unknown\");\n }\n\n if (this.config.biome.vcsEnabled && !args.includes(\"--vcs-enabled\")) {\n args.push(\"--vcs-enabled\");\n\n if (!args.includes(\"--vcs-root\")) {\n args.push(\"--vcs-root\", this.config.cwd);\n }\n\n if (\n this.config.biome.vcsClientKind &&\n !args.includes(\"--vcs-client-kind\")\n ) {\n args.push(\"--vcs-client-kind\", this.config.biome.vcsClientKind);\n }\n\n if (\n this.config.biome.vcsUseIgnoreFile &&\n !args.includes(\"--vcs-use-ignore-file\")\n ) {\n args.push(\"--vcs-use-ignore-file\");\n }\n\n if (\n this.config.biome.vcsDefaultBranch &&\n !args.includes(\"--vcs-default-branch\")\n ) {\n args.push(\"--vcs-default-branch\", this.config.biome.vcsDefaultBranch);\n }\n }\n\n if (!this.config.biome.biomePath) {\n const isBiomeListed = await isPackageListed(\n \"@biomejs/biome\",\n this.config.root\n );\n\n args.unshift(isBiomeListed ? \"./\" : joinPaths(this.config.root, \"src\"));\n\n const result = await executePackage(\n \"biome\",\n args,\n isBiomeListed\n ? joinPaths(this.config.cwd, this.config.root)\n : this.config.root\n );\n if (result.failed) {\n throw new Error(`Biome process exited with code ${result.exitCode}.`);\n }\n } else {\n args.unshift(\n this.config.biome.biomePath,\n joinPaths(this.config.root, \"src\")\n );\n\n const result = await execute(args.join(\" \"), this.config.cwd);\n if (result.failed) {\n throw new Error(`Biome process exited with code ${result.exitCode}.`);\n }\n }\n }\n };\n}\n\nexport default plugin;\n"],"mappings":";;;;;;;;;AAoCA,SAAgB,OACd,UAA8B,EAAE,EACJ;AAC5B,QAAO;EACL,MAAM;EACN,MAAM,SAAS;AACb,QAAK,MACH,6EACD;GAED,IAAI,aAAa,QAAQ;AACzB,OAAI,CAAC,WACH,KACE,WACE,UAAU,KAAK,OAAO,OAAO,MAAM,KAAK,OAAO,MAAM,aAAa,CACnE,CAED,cAAa,UACX,KAAK,OAAO,OAAO,MACnB,KAAK,OAAO,MACZ,aACD;YAED,WACE,UAAU,KAAK,OAAO,OAAO,MAAM,KAAK,OAAO,MAAM,cAAc,CACpE,CAED,cAAa,UACX,KAAK,OAAO,OAAO,MACnB,KAAK,OAAO,MACZ,cACD;YAED,WAAW,UAAU,KAAK,OAAO,OAAO,MAAM,aAAa,CAAC,CAE5D,cAAa,UAAU,KAAK,OAAO,OAAO,MAAM,aAAa;YAE7D,WAAW,UAAU,KAAK,OAAO,OAAO,MAAM,cAAc,CAAC,CAE7D,cAAa,UAAU,KAAK,OAAO,OAAO,MAAM,cAAc;OAE9D,OAAM,IAAI,MACR,2HACD;AAIL,UAAO,EACL,OAAO;IACL;IACA,gBAAgB;IAChB,iBAAiB;IACjB,KAAK;IACL,SAAS;IACT,QAAQ;IACR,YAAY;IACZ,kBAAkB;IAClB,GAAG;IACJ,EACF;;EAEH,MAAM,OAAO;AACX,QAAK,MAAM,oCAAoC;GAE/C,MAAM,OAAiB,EAAE;AAEzB,OAAI,KAAK,OAAO,MAAM,OACpB,MAAK,KAAK,GAAG,KAAK,OAAO,MAAM,OAAO,MAAM,IAAI,CAAC,OAAO,QAAQ,CAAC;AAGnE,OAAI,CAAC,KAAK,SAAS,cAAc,CAC/B,MAAK,KACH,eACA,CAAC,KAAK,OAAO,YACX,KAAK,OAAO,aAAa,WACzB,KAAK,OAAO,aAAa,UACvB,SACA,KAAK,OAAO,SACjB;AAGH,OACE,CAAC,KAAK,SAAS,YAAY,KAC1B,KAAK,OAAO,aAAa,WACxB,KAAK,OAAO,aAAa,WACzB,KAAK,OAAO,SAAS,eAEvB,MAAK,KAAK,YAAY;AAGxB,OAAI,KAAK,OAAO,MAAM,QAAQ,SAAS,CAAC,KAAK,SAAS,QAAQ,EAAE;AAC9D,SAAK,KAAK,QAAQ;AAClB,QAAI,KAAK,OAAO,MAAM,QAAQ,YAAY,CAAC,KAAK,SAAS,WAAW,CAClE,MAAK,KAAK,WAAW;;AAIzB,OAAI,KAAK,OAAO,MAAM,cAAc,CAAC,KAAK,SAAS,gBAAgB,CACjE,MAAK,KAAK,iBAAiB,KAAK,OAAO,MAAM,WAAW;AAG1D,OAAI,KAAK,OAAO,MAAM,WAAW,CAAC,KAAK,SAAS,YAAY,CAC1D,MAAK,KAAK,YAAY;AAGxB,OAAI,KAAK,OAAO,MAAM,UAAU,CAAC,KAAK,SAAS,WAAW,CACxD,MAAK,KAAK,WAAW;AAGvB,OAAI,KAAK,OAAO,MAAM,kBAAkB,CAAC,KAAK,SAAS,WAAW,CAChE,MAAK,KACH,YACA,MAAM,QAAQ,KAAK,OAAO,MAAM,eAAe,GAC3C,KAAK,OAAO,MAAM,eAAe,KAAK,IAAI,GAC1C,KAAK,OAAO,MAAM,eACvB;AAGH,OAAI,KAAK,OAAO,MAAM,YAAY,CAAC,KAAK,SAAS,aAAa,CAC5D,MAAK,KAAK,aAAa;AAGzB,OAAI,KAAK,OAAO,MAAM,QAAQ,CAAC,KAAK,SAAS,SAAS,CACpD,MAAK,KACH,UACA,MAAM,QAAQ,KAAK,OAAO,MAAM,KAAK,GACjC,KAAK,OAAO,MAAM,KAAK,KAAK,IAAI,GAChC,KAAK,OAAO,MAAM,KACvB;AAGH,OAAI,KAAK,OAAO,MAAM,QAAQ,CAAC,KAAK,SAAS,SAAS,CACpD,MAAK,KACH,UACA,MAAM,QAAQ,KAAK,OAAO,MAAM,KAAK,GACjC,KAAK,OAAO,MAAM,KAAK,KAAK,IAAI,GAChC,KAAK,OAAO,MAAM,KACvB;AAGH,OACE,KAAK,OAAO,MAAM,iBAClB,CAAC,KAAK,SAAS,oBAAoB,CAEnC,MAAK,KAAK,qBAAqB,KAAK,OAAO,MAAM,cAAc;AAGjE,OACE,KAAK,OAAO,MAAM,mBAAmB,UACrC,CAAC,KAAK,SAAS,oBAAoB,CAEnC,MAAK,KACH,qBACA,KAAK,OAAO,MAAM,eAAe,UAAU,CAC5C;AAGH,OACE,KAAK,OAAO,MAAM,mBAClB,CAAC,KAAK,SAAS,qBAAqB,CAEpC,MAAK,KAAK,sBAAsB,KAAK,OAAO,MAAM,gBAAgB;AAGpE,OACE,KAAK,OAAO,MAAM,mBAClB,CAAC,KAAK,SAAS,sBAAsB,CAErC,MAAK,KAAK,sBAAsB;AAGlC,OACE,KAAK,OAAO,MAAM,0BAClB,CAAC,KAAK,SAAS,8BAA8B,CAE7C,MAAK,KAAK,8BAA8B;AAG1C,OACE,KAAK,OAAO,MAAM,gCAClB,CAAC,KAAK,SAAS,qCAAqC,CAEpD,MAAK,KAAK,qCAAqC;AAGjD,OAAI,KAAK,OAAO,MAAM,YAAY,CAAC,KAAK,SAAS,aAAa,CAC5D,MAAK,KAAK,cAAc,KAAK,OAAO,MAAM,SAAS;AAGrD,OAAI,KAAK,OAAO,MAAM,WAAW,CAAC,KAAK,SAAS,aAAa,CAC3D,MAAK,KAAK,cAAc,KAAK,OAAO,MAAM,QAAQ;AAGpD,OACE,KAAK,OAAO,MAAM,gBAClB,CAAC,KAAK,SAAS,mBAAmB,CAElC,MAAK,KACH,oBACA,KAAK,OAAO,MAAM,aAAa,UAAU,CAC1C;AAGH,OACE,KAAK,OAAO,MAAM,sBAClB,CAAC,KAAK,SAAS,yBAAyB,CAExC,MAAK,KAAK,yBAAyB;AAGrC,OAAI,KAAK,OAAO,MAAM,cAAc,CAAC,KAAK,SAAS,gBAAgB,EAAE;AACnE,SAAK,KAAK,gBAAgB;AAE1B,QAAI,CAAC,KAAK,SAAS,aAAa,CAC9B,MAAK,KAAK,cAAc,KAAK,OAAO,IAAI;AAG1C,QACE,KAAK,OAAO,MAAM,iBAClB,CAAC,KAAK,SAAS,oBAAoB,CAEnC,MAAK,KAAK,qBAAqB,KAAK,OAAO,MAAM,cAAc;AAGjE,QACE,KAAK,OAAO,MAAM,oBAClB,CAAC,KAAK,SAAS,wBAAwB,CAEvC,MAAK,KAAK,wBAAwB;AAGpC,QACE,KAAK,OAAO,MAAM,oBAClB,CAAC,KAAK,SAAS,uBAAuB,CAEtC,MAAK,KAAK,wBAAwB,KAAK,OAAO,MAAM,iBAAiB;;AAIzE,OAAI,CAAC,KAAK,OAAO,MAAM,WAAW;IAChC,MAAM,gBAAgB,MAAM,gBAC1B,kBACA,KAAK,OAAO,KACb;AAED,SAAK,QAAQ,gBAAgB,OAAO,UAAU,KAAK,OAAO,MAAM,MAAM,CAAC;IAEvE,MAAM,SAAS,MAAM,eACnB,SACA,MACA,gBACI,UAAU,KAAK,OAAO,KAAK,KAAK,OAAO,KAAK,GAC5C,KAAK,OAAO,KACjB;AACD,QAAI,OAAO,OACT,OAAM,IAAI,MAAM,kCAAkC,OAAO,SAAS,GAAG;UAElE;AACL,SAAK,QACH,KAAK,OAAO,MAAM,WAClB,UAAU,KAAK,OAAO,MAAM,MAAM,CACnC;IAED,MAAM,SAAS,MAAM,QAAQ,KAAK,KAAK,IAAI,EAAE,KAAK,OAAO,IAAI;AAC7D,QAAI,OAAO,OACT,OAAM,IAAI,MAAM,kCAAkC,OAAO,SAAS,GAAG;;;EAI5E"}
|
package/dist/types/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{};
|
|
1
|
+
export { };
|
package/dist/types/plugin.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{};
|
|
1
|
+
export { };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-biome",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.464",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running Biome linting on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -94,15 +94,15 @@
|
|
|
94
94
|
"@stryke/fs": "^0.33.70",
|
|
95
95
|
"@stryke/path": "^0.28.2",
|
|
96
96
|
"defu": "^6.1.7",
|
|
97
|
-
"powerlines": "^0.46.
|
|
97
|
+
"powerlines": "^0.46.5"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
100
|
+
"@powerlines/plugin-plugin": "^0.12.409",
|
|
101
101
|
"@types/node": "^25.6.0"
|
|
102
102
|
},
|
|
103
103
|
"publishConfig": { "access": "public" },
|
|
104
104
|
"main": "./dist/index.cjs",
|
|
105
105
|
"module": "./dist/index.mjs",
|
|
106
106
|
"types": "./dist/index.d.cts",
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "9af888c54e58a82744cc334a6b80da52429fa0ac"
|
|
108
108
|
}
|