@powerlines/plugin-biome 0.2.347 → 0.2.349
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/README.md +14 -16
- package/dist/_virtual/_rolldown/runtime.mjs +3 -0
- package/dist/index.cjs +15 -16
- package/dist/index.d.cts +0 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +0 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -2
- package/dist/index.mjs.map +1 -1
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts.map +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>🔌 Powerlines</b> monorepo. Powerlines is the "
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://stormsoftware.com/projects/powerlines) [](http://commitizen.github.io/cz-cli/)  
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
|
@@ -58,21 +58,19 @@ A package containing a Powerlines plugin that integrates Biome into the Powerlin
|
|
|
58
58
|
|
|
59
59
|
## Table of Contents
|
|
60
60
|
|
|
61
|
-
- [
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
- [
|
|
65
|
-
- [
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
- [Contributing](#contributing)
|
|
75
|
-
- [Contributors](#contributors)
|
|
61
|
+
- [Installing](#installing)
|
|
62
|
+
- [Reduced Package Size](#reduced-package-size)
|
|
63
|
+
- [Development](#development)
|
|
64
|
+
- [Building](#building)
|
|
65
|
+
- [Running unit tests](#running-unit-tests)
|
|
66
|
+
- [Linting](#linting)
|
|
67
|
+
- [Storm Workspaces](#storm-workspaces)
|
|
68
|
+
- [Roadmap](#roadmap)
|
|
69
|
+
- [Support](#support)
|
|
70
|
+
- [License](#license)
|
|
71
|
+
- [Changelog](#changelog)
|
|
72
|
+
- [Contributing](#contributing)
|
|
73
|
+
- [Contributors](#contributors)
|
|
76
74
|
|
|
77
75
|
<!-- END doctoc -->
|
|
78
76
|
|
package/dist/index.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
Object.
|
|
2
|
-
let
|
|
3
|
-
let
|
|
4
|
-
let
|
|
5
|
-
let
|
|
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
6
|
|
|
7
7
|
//#region src/index.ts
|
|
8
8
|
/**
|
|
@@ -14,10 +14,10 @@ function plugin(options = {}) {
|
|
|
14
14
|
async config() {
|
|
15
15
|
this.debug("Providing default configuration for the Powerlines `biome` linting plugin.");
|
|
16
16
|
let configFile = options.configFile;
|
|
17
|
-
if (!configFile) if ((0,
|
|
18
|
-
else if ((0,
|
|
19
|
-
else if ((0,
|
|
20
|
-
else if ((0,
|
|
17
|
+
if (!configFile) if ((0, _stryke_fs_exists.existsSync)((0, _stryke_path_join.joinPaths)(this.workspaceConfig.workspaceRoot, this.config.root, "biome.json"))) configFile = (0, _stryke_path_join.joinPaths)(this.workspaceConfig.workspaceRoot, this.config.root, "biome.json");
|
|
18
|
+
else if ((0, _stryke_fs_exists.existsSync)((0, _stryke_path_join.joinPaths)(this.workspaceConfig.workspaceRoot, this.config.root, "biome.jsonc"))) configFile = (0, _stryke_path_join.joinPaths)(this.workspaceConfig.workspaceRoot, this.config.root, "biome.jsonc");
|
|
19
|
+
else if ((0, _stryke_fs_exists.existsSync)((0, _stryke_path_join.joinPaths)(this.workspaceConfig.workspaceRoot, "biome.json"))) configFile = (0, _stryke_path_join.joinPaths)(this.workspaceConfig.workspaceRoot, "biome.json");
|
|
20
|
+
else if ((0, _stryke_fs_exists.existsSync)((0, _stryke_path_join.joinPaths)(this.workspaceConfig.workspaceRoot, "biome.jsonc"))) configFile = (0, _stryke_path_join.joinPaths)(this.workspaceConfig.workspaceRoot, "biome.jsonc");
|
|
21
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
22
|
return { biome: {
|
|
23
23
|
configFile,
|
|
@@ -66,20 +66,19 @@ function plugin(options = {}) {
|
|
|
66
66
|
if (this.config.biome.vcsDefaultBranch && !args.includes("--vcs-default-branch")) args.push("--vcs-default-branch", this.config.biome.vcsDefaultBranch);
|
|
67
67
|
}
|
|
68
68
|
if (!this.config.biome.biomePath) {
|
|
69
|
-
const isBiomeListed = await (0,
|
|
70
|
-
args.unshift(isBiomeListed ? "./" : (0,
|
|
71
|
-
const result = await (0,
|
|
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.workspaceConfig.workspaceRoot, this.config.root) : this.config.root);
|
|
72
72
|
if (result.failed) throw new Error(`Biome process exited with code ${result.exitCode}.`);
|
|
73
73
|
} else {
|
|
74
|
-
args.unshift(this.config.biome.biomePath, (0,
|
|
75
|
-
const result = await (0,
|
|
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.workspaceConfig.workspaceRoot);
|
|
76
76
|
if (result.failed) throw new Error(`Biome process exited with code ${result.exitCode}.`);
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
};
|
|
80
80
|
}
|
|
81
|
-
var src_default = plugin;
|
|
82
81
|
|
|
83
82
|
//#endregion
|
|
84
|
-
exports.default =
|
|
83
|
+
exports.default = plugin;
|
|
85
84
|
exports.plugin = plugin;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { BiomePluginContext, BiomePluginOptions, BiomePluginResolvedConfig, BiomePluginUserConfig, __ΩBiomePluginContext, __ΩBiomePluginOptions, __ΩBiomePluginResolvedConfig, __ΩBiomePluginUserConfig } from "./types/plugin.cjs";
|
|
2
|
-
import "./types/index.cjs";
|
|
3
2
|
import { Plugin } from "powerlines";
|
|
4
3
|
|
|
5
4
|
//#region src/index.d.ts
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;YAgCY,MAAA;IACR,KAAA,GAAQ,kBAAA;EAAA;AAAA;;;;iBAOI,MAAA,CACd,OAAA,GAAS,kBAAA,GACR,MAAA,CAAO,kBAAA"}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { BiomePluginContext, BiomePluginOptions, BiomePluginResolvedConfig, BiomePluginUserConfig, __ΩBiomePluginContext, __ΩBiomePluginOptions, __ΩBiomePluginResolvedConfig, __ΩBiomePluginUserConfig } from "./types/plugin.mjs";
|
|
2
|
-
import "./types/index.mjs";
|
|
3
2
|
import { Plugin } from "powerlines";
|
|
4
3
|
|
|
5
4
|
//#region src/index.d.ts
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;YAgCY,MAAA;IACR,KAAA,GAAQ,kBAAA;EAAA;AAAA;;;;iBAOI,MAAA,CACd,OAAA,GAAS,kBAAA,GACR,MAAA,CAAO,kBAAA"}
|
package/dist/index.mjs
CHANGED
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":["args: string[]"],"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 {\n BiomePluginContext,\n BiomePluginOptions,\n BiomePluginUserConfig\n} 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(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"biome.json\"\n )\n )\n ) {\n configFile = joinPaths(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"biome.json\"\n );\n } else if (\n existsSync(\n joinPaths(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"biome.jsonc\"\n )\n )\n ) {\n configFile = joinPaths(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"biome.jsonc\"\n );\n } else if (\n existsSync(\n joinPaths(this.workspaceConfig.workspaceRoot, \"biome.json\")\n )\n ) {\n configFile = joinPaths(\n this.workspaceConfig.workspaceRoot,\n \"biome.json\"\n );\n } else if (\n existsSync(\n joinPaths(this.workspaceConfig.workspaceRoot, \"biome.jsonc\")\n )\n ) {\n configFile = joinPaths(\n this.workspaceConfig.workspaceRoot,\n \"biome.jsonc\"\n );\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: this.workspaceConfig.branch || \"main\",\n ...options\n }\n } as BiomePluginUserConfig;\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.workspaceConfig.workspaceRoot);\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.workspaceConfig.workspaceRoot, 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(\n args.join(\" \"),\n this.workspaceConfig.workspaceRoot\n );\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 {\n BiomePluginContext,\n BiomePluginOptions,\n BiomePluginUserConfig\n} 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(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"biome.json\"\n )\n )\n ) {\n configFile = joinPaths(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"biome.json\"\n );\n } else if (\n existsSync(\n joinPaths(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"biome.jsonc\"\n )\n )\n ) {\n configFile = joinPaths(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"biome.jsonc\"\n );\n } else if (\n existsSync(\n joinPaths(this.workspaceConfig.workspaceRoot, \"biome.json\")\n )\n ) {\n configFile = joinPaths(\n this.workspaceConfig.workspaceRoot,\n \"biome.json\"\n );\n } else if (\n existsSync(\n joinPaths(this.workspaceConfig.workspaceRoot, \"biome.jsonc\")\n )\n ) {\n configFile = joinPaths(\n this.workspaceConfig.workspaceRoot,\n \"biome.jsonc\"\n );\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: this.workspaceConfig.branch || \"main\",\n ...options\n }\n } as BiomePluginUserConfig;\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.workspaceConfig.workspaceRoot);\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.workspaceConfig.workspaceRoot, 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(\n args.join(\" \"),\n this.workspaceConfig.workspaceRoot\n );\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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"
|
|
1
|
+
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;UAoBiB,kBAAA;;AAAjB;;EAIE,cAAA;EAJiC;;;;;EAWjC,UAAA;EAsBA;;;;;EAfA,GAAA;EAiDA;;;EA5CA,uBAAA;EAgEA;;;EA3DA,iBAAA;EA2FA;;;EAtFA,YAAA;EA0GA;;;EArGA,kBAAA;EA6HA;;;EAxHA,MAAA;EAuIS;;AAGX;;;EAnIE,MAAA;EAmI6C;;;;;EA5H7C,cAAA;EAmIyC;;;EA9HzC,eAAA;EAkIA;;;EA7HA,mBAAA;EAgIU;;;EA3HV,eAAA;EA4HoD;;;EAvHpD,sBAAA;EAwHe;;;EAnHf,4BAAA;EAmHE;;;EA9GF,QAAA;;;;;;EAeA,OAAA;;;;;;EAOA,eAAA;;;;EAKA,QAAA;;;;EAKA,MAAA;;;;EAKA,IAAA;;;;EAKA,IAAA;;;;EAKA,aAAA;;;;EAKA,UAAA;;;;;;EAOA,aAAA;;;;EAKA,gBAAA;;;;;;EAOA,gBAAA;;;;EAKA,MAAA;;;;EAKA,OAAA;;;;EAKA,MAAA;;;;EAKA,SAAA;AAAA;AAAA,UAGe,qBAAA,SAA8B,UAAA;;;;EAI7C,KAAA,GAAQ,kBAAA;AAAA;AAAA,UAGO,yBAAA,SAAkC,cAAA;;;;EAIjD,KAAA,EAAO,kBAAA;AAAA;AAAA,KAGG,kBAAA,yBACc,yBAAA,GAA4B,yBAAA,IAClD,aAAA,CAAc,eAAA;AAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"
|
|
1
|
+
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;UAoBiB,kBAAA;;AAAjB;;EAIE,cAAA;EAJiC;;;;;EAWjC,UAAA;EAsBA;;;;;EAfA,GAAA;EAiDA;;;EA5CA,uBAAA;EAgEA;;;EA3DA,iBAAA;EA2FA;;;EAtFA,YAAA;EA0GA;;;EArGA,kBAAA;EA6HA;;;EAxHA,MAAA;EAuIS;;AAGX;;;EAnIE,MAAA;EAmI6C;;;;;EA5H7C,cAAA;EAmIyC;;;EA9HzC,eAAA;EAkIA;;;EA7HA,mBAAA;EAgIU;;;EA3HV,eAAA;EA4HoD;;;EAvHpD,sBAAA;EAwHe;;;EAnHf,4BAAA;EAmHE;;;EA9GF,QAAA;;;;;;EAeA,OAAA;;;;;;EAOA,eAAA;;;;EAKA,QAAA;;;;EAKA,MAAA;;;;EAKA,IAAA;;;;EAKA,IAAA;;;;EAKA,aAAA;;;;EAKA,UAAA;;;;;;EAOA,aAAA;;;;EAKA,gBAAA;;;;;;EAOA,gBAAA;;;;EAKA,MAAA;;;;EAKA,OAAA;;;;EAKA,MAAA;;;;EAKA,SAAA;AAAA;AAAA,UAGe,qBAAA,SAA8B,UAAA;;;;EAI7C,KAAA,GAAQ,kBAAA;AAAA;AAAA,UAGO,yBAAA,SAAkC,cAAA;;;;EAIjD,KAAA,EAAO,kBAAA;AAAA;AAAA,KAGG,kBAAA,yBACc,yBAAA,GAA4B,yBAAA,IAClD,aAAA,CAAc,eAAA;AAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-biome",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.349",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running Biome linting on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"default": "./dist/index.mjs"
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
|
-
"
|
|
56
|
+
"./package.json": "./package.json",
|
|
57
57
|
"./types": {
|
|
58
58
|
"require": {
|
|
59
59
|
"types": "./dist/types/index.d.cts",
|
|
@@ -88,21 +88,21 @@
|
|
|
88
88
|
"peerDependencies": { "@biomejs/biome": ">=2.0.0" },
|
|
89
89
|
"peerDependenciesMeta": { "@biomejs/biome": { "optional": false } },
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@storm-software/config-tools": "
|
|
91
|
+
"@storm-software/config-tools": "1.189.28",
|
|
92
92
|
"@stryke/cli": "^0.13.29",
|
|
93
93
|
"@stryke/convert": "^0.6.53",
|
|
94
94
|
"@stryke/fs": "^0.33.57",
|
|
95
95
|
"@stryke/path": "^0.26.19",
|
|
96
96
|
"defu": "^6.1.4",
|
|
97
|
-
"powerlines": "^0.41.
|
|
97
|
+
"powerlines": "^0.41.8"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
100
|
+
"@powerlines/plugin-plugin": "^0.12.294",
|
|
101
101
|
"@types/node": "^25.4.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": "40d1f94407720be23c3801f9145fdad1fe27dfb2"
|
|
108
108
|
}
|