@powerlines/plugin-oxlint 0.7.182 → 0.7.184
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/packages/plugin-oxlint/src/helpers/index.cjs +3 -0
- package/dist/{types → packages/plugin-oxlint/src/types}/plugin.d.cts +3 -3
- package/dist/{types → packages/plugin-oxlint/src/types}/plugin.d.mts +3 -3
- package/dist/{index.d.cts → src/index.d.cts} +2 -2
- package/dist/{index.d.mts → src/index.d.mts} +3 -3
- package/package.json +5 -5
- package/dist/helpers/index.cjs +0 -3
- /package/dist/{helpers → packages/plugin-oxlint/src/helpers}/generate-config.cjs +0 -0
- /package/dist/{helpers → packages/plugin-oxlint/src/helpers}/generate-config.d.cts +0 -0
- /package/dist/{helpers → packages/plugin-oxlint/src/helpers}/generate-config.d.mts +0 -0
- /package/dist/{helpers → packages/plugin-oxlint/src/helpers}/generate-config.mjs +0 -0
- /package/dist/{helpers → packages/plugin-oxlint/src/helpers}/index.d.cts +0 -0
- /package/dist/{helpers → packages/plugin-oxlint/src/helpers}/index.d.mts +0 -0
- /package/dist/{helpers → packages/plugin-oxlint/src/helpers}/index.mjs +0 -0
- /package/dist/{types → packages/plugin-oxlint/src/types}/index.cjs +0 -0
- /package/dist/{types → packages/plugin-oxlint/src/types}/index.d.cts +0 -0
- /package/dist/{types → packages/plugin-oxlint/src/types}/index.d.mts +0 -0
- /package/dist/{types → packages/plugin-oxlint/src/types}/index.mjs +0 -0
- /package/dist/{types → packages/plugin-oxlint/src/types}/plugin.cjs +0 -0
- /package/dist/{types → packages/plugin-oxlint/src/types}/plugin.mjs +0 -0
- /package/dist/{index.cjs → src/index.cjs} +0 -0
- /package/dist/{index.mjs → src/index.mjs} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ResolvedConfig } from "
|
|
2
|
-
import { PluginContext } from "
|
|
3
|
-
import { UserConfig } from "
|
|
1
|
+
import { ResolvedConfig } from "../../../../powerlines/src/types/resolved.cjs";
|
|
2
|
+
import { PluginContext } from "../../../../powerlines/src/types/context.cjs";
|
|
3
|
+
import { UserConfig } from "../../../../powerlines/src/types/config.cjs";
|
|
4
4
|
|
|
5
5
|
//#region src/types/plugin.d.ts
|
|
6
6
|
interface OxlintPluginOptions {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ResolvedConfig } from "
|
|
2
|
-
import { PluginContext } from "
|
|
3
|
-
import { UserConfig } from "
|
|
1
|
+
import { ResolvedConfig } from "../../../../powerlines/src/types/resolved.mjs";
|
|
2
|
+
import { PluginContext } from "../../../../powerlines/src/types/context.mjs";
|
|
3
|
+
import { UserConfig } from "../../../../powerlines/src/types/config.mjs";
|
|
4
4
|
|
|
5
5
|
//#region src/types/plugin.d.ts
|
|
6
6
|
interface OxlintPluginOptions {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Plugin } from "
|
|
2
|
-
import { OxlintPluginContext, OxlintPluginOptions, OxlintPluginResolvedConfig, OxlintPluginUserConfig, __ΩOxlintPluginContext, __ΩOxlintPluginOptions, __ΩOxlintPluginResolvedConfig, __ΩOxlintPluginUserConfig } from "
|
|
1
|
+
import { Plugin } from "../powerlines/src/types/plugin.cjs";
|
|
2
|
+
import { OxlintPluginContext, OxlintPluginOptions, OxlintPluginResolvedConfig, OxlintPluginUserConfig, __ΩOxlintPluginContext, __ΩOxlintPluginOptions, __ΩOxlintPluginResolvedConfig, __ΩOxlintPluginUserConfig } from "../packages/plugin-oxlint/src/types/plugin.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/index.d.ts
|
|
5
5
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Plugin } from "
|
|
2
|
-
import { OxlintPluginContext, OxlintPluginOptions, OxlintPluginResolvedConfig, OxlintPluginUserConfig, __ΩOxlintPluginContext, __ΩOxlintPluginOptions, __ΩOxlintPluginResolvedConfig, __ΩOxlintPluginUserConfig } from "
|
|
3
|
-
import "
|
|
1
|
+
import { Plugin } from "../powerlines/src/types/plugin.mjs";
|
|
2
|
+
import { OxlintPluginContext, OxlintPluginOptions, OxlintPluginResolvedConfig, OxlintPluginUserConfig, __ΩOxlintPluginContext, __ΩOxlintPluginOptions, __ΩOxlintPluginResolvedConfig, __ΩOxlintPluginUserConfig } from "../packages/plugin-oxlint/src/types/plugin.mjs";
|
|
3
|
+
import "../packages/plugin-oxlint/src/types/index.mjs";
|
|
4
4
|
|
|
5
5
|
//#region src/index.d.ts
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-oxlint",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.184",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running Oxlint on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -106,14 +106,14 @@
|
|
|
106
106
|
"@stryke/fs": "^0.33.35",
|
|
107
107
|
"@stryke/path": "^0.25.3",
|
|
108
108
|
"defu": "^6.1.4",
|
|
109
|
-
"oxlint": "^1.
|
|
109
|
+
"oxlint": "^1.41.0",
|
|
110
110
|
"oxlint-tsgolint": "^0.2.1",
|
|
111
|
-
"powerlines": "^0.37.
|
|
111
|
+
"powerlines": "^0.37.54"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
114
|
+
"@powerlines/plugin-plugin": "^0.12.132",
|
|
115
115
|
"@types/node": "^24.10.9"
|
|
116
116
|
},
|
|
117
117
|
"publishConfig": { "access": "public" },
|
|
118
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "0030560b882e0e314b3085cc9607bc387e6bcba3"
|
|
119
119
|
}
|
package/dist/helpers/index.cjs
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|