@powerlines/plugin-eslint 0.8.20 → 0.8.24
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/helpers/format-message.d.cts +3 -1
- package/dist/helpers/format-message.d.ts +3 -1
- package/dist/helpers/index.d.cts +1 -1
- package/dist/helpers/index.d.ts +1 -1
- package/dist/{index-oBDtM2tc.d.cts → index-DiikpUno.d.cts} +16 -3
- package/dist/{index-oBDtM2tc.d.ts → index-DiikpUno.d.ts} +16 -3
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/package.json +7 -7
|
@@ -10,5 +10,7 @@ interface LintMessage {
|
|
|
10
10
|
column: number;
|
|
11
11
|
}
|
|
12
12
|
declare function formatMessage(dir: string, messages: LintMessage[], filePath: string): string;
|
|
13
|
+
declare type __ΩMessageSeverity = any[];
|
|
14
|
+
declare type __ΩLintMessage = any[];
|
|
13
15
|
|
|
14
|
-
export { type LintMessage, MessageSeverity, formatMessage };
|
|
16
|
+
export { type LintMessage, MessageSeverity, type __ΩLintMessage, type __ΩMessageSeverity, formatMessage };
|
|
@@ -10,5 +10,7 @@ interface LintMessage {
|
|
|
10
10
|
column: number;
|
|
11
11
|
}
|
|
12
12
|
declare function formatMessage(dir: string, messages: LintMessage[], filePath: string): string;
|
|
13
|
+
declare type __ΩMessageSeverity = any[];
|
|
14
|
+
declare type __ΩLintMessage = any[];
|
|
13
15
|
|
|
14
|
-
export { type LintMessage, MessageSeverity, formatMessage };
|
|
16
|
+
export { type LintMessage, MessageSeverity, type __ΩLintMessage, type __ΩMessageSeverity, formatMessage };
|
package/dist/helpers/index.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { LintMessage, MessageSeverity, formatMessage } from './format-message.cjs';
|
|
1
|
+
export { LintMessage, MessageSeverity, __ΩLintMessage, __ΩMessageSeverity, formatMessage } from './format-message.cjs';
|
package/dist/helpers/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { LintMessage, MessageSeverity, formatMessage } from './format-message.js';
|
|
1
|
+
export { LintMessage, MessageSeverity, __ΩLintMessage, __ΩMessageSeverity, formatMessage } from './format-message.js';
|
|
@@ -219,8 +219,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
219
219
|
tsconfigFilePath: string;
|
|
220
220
|
};
|
|
221
221
|
|
|
222
|
-
declare const __VFS_PATCH__
|
|
223
|
-
declare const __VFS_REVERT__
|
|
222
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
223
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
224
224
|
type OutputModeType = "fs" | "virtual";
|
|
225
225
|
interface VirtualFile {
|
|
226
226
|
/**
|
|
@@ -629,6 +629,15 @@ interface OutputConfig {
|
|
|
629
629
|
* @defaultValue "dist/\{projectRoot\}"
|
|
630
630
|
*/
|
|
631
631
|
outputPath?: string;
|
|
632
|
+
/**
|
|
633
|
+
* The output directory path for the project build.
|
|
634
|
+
*
|
|
635
|
+
* @remarks
|
|
636
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
637
|
+
*
|
|
638
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
639
|
+
*/
|
|
640
|
+
distPath?: string;
|
|
632
641
|
/**
|
|
633
642
|
* The format of the output files
|
|
634
643
|
*
|
|
@@ -1470,5 +1479,9 @@ type ESLintPluginContext<TResolvedConfig extends ESLintPluginResolvedConfig = ES
|
|
|
1470
1479
|
*/
|
|
1471
1480
|
eslint: ESLint | LegacyESLint;
|
|
1472
1481
|
};
|
|
1482
|
+
declare type __ΩESLintPluginOptions = any[];
|
|
1483
|
+
declare type __ΩESLintPluginUserConfig = any[];
|
|
1484
|
+
declare type __ΩESLintPluginResolvedConfig = any[];
|
|
1485
|
+
declare type __ΩESLintPluginContext = any[];
|
|
1473
1486
|
|
|
1474
|
-
export type { ESLintPluginOptions as E, Plugin as P, ESLintPluginContext as a, ESLintPluginUserConfig as b, ESLintPluginResolvedConfig as c };
|
|
1487
|
+
export type { ESLintPluginOptions as E, Plugin as P, __ΩESLintPluginOptions as _, ESLintPluginContext as a, ESLintPluginUserConfig as b, ESLintPluginResolvedConfig as c, __ΩESLintPluginUserConfig as d, __ΩESLintPluginResolvedConfig as e, __ΩESLintPluginContext as f };
|
|
@@ -219,8 +219,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
219
219
|
tsconfigFilePath: string;
|
|
220
220
|
};
|
|
221
221
|
|
|
222
|
-
declare const __VFS_PATCH__
|
|
223
|
-
declare const __VFS_REVERT__
|
|
222
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
223
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
224
224
|
type OutputModeType = "fs" | "virtual";
|
|
225
225
|
interface VirtualFile {
|
|
226
226
|
/**
|
|
@@ -629,6 +629,15 @@ interface OutputConfig {
|
|
|
629
629
|
* @defaultValue "dist/\{projectRoot\}"
|
|
630
630
|
*/
|
|
631
631
|
outputPath?: string;
|
|
632
|
+
/**
|
|
633
|
+
* The output directory path for the project build.
|
|
634
|
+
*
|
|
635
|
+
* @remarks
|
|
636
|
+
* This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
|
|
637
|
+
*
|
|
638
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
639
|
+
*/
|
|
640
|
+
distPath?: string;
|
|
632
641
|
/**
|
|
633
642
|
* The format of the output files
|
|
634
643
|
*
|
|
@@ -1470,5 +1479,9 @@ type ESLintPluginContext<TResolvedConfig extends ESLintPluginResolvedConfig = ES
|
|
|
1470
1479
|
*/
|
|
1471
1480
|
eslint: ESLint | LegacyESLint;
|
|
1472
1481
|
};
|
|
1482
|
+
declare type __ΩESLintPluginOptions = any[];
|
|
1483
|
+
declare type __ΩESLintPluginUserConfig = any[];
|
|
1484
|
+
declare type __ΩESLintPluginResolvedConfig = any[];
|
|
1485
|
+
declare type __ΩESLintPluginContext = any[];
|
|
1473
1486
|
|
|
1474
|
-
export type { ESLintPluginOptions as E, Plugin as P, ESLintPluginContext as a, ESLintPluginUserConfig as b, ESLintPluginResolvedConfig as c };
|
|
1487
|
+
export type { ESLintPluginOptions as E, Plugin as P, __ΩESLintPluginOptions as _, ESLintPluginContext as a, ESLintPluginUserConfig as b, ESLintPluginResolvedConfig as c, __ΩESLintPluginUserConfig as d, __ΩESLintPluginResolvedConfig as e, __ΩESLintPluginContext as f };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { E as ESLintPluginOptions, P as Plugin, a as ESLintPluginContext } from './index-
|
|
2
|
-
export { c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig } from './index-
|
|
3
|
-
export { LintMessage, MessageSeverity, formatMessage } from './helpers/format-message.cjs';
|
|
1
|
+
import { E as ESLintPluginOptions, P as Plugin, a as ESLintPluginContext } from './index-DiikpUno.cjs';
|
|
2
|
+
export { c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig, f as __ΩESLintPluginContext, _ as __ΩESLintPluginOptions, e as __ΩESLintPluginResolvedConfig, d as __ΩESLintPluginUserConfig } from './index-DiikpUno.cjs';
|
|
3
|
+
export { LintMessage, MessageSeverity, __ΩLintMessage, __ΩMessageSeverity, formatMessage } from './helpers/format-message.cjs';
|
|
4
4
|
import 'eslint';
|
|
5
5
|
import 'eslint/use-at-your-own-risk';
|
|
6
6
|
import '@storm-software/build-tools/types';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { E as ESLintPluginOptions, P as Plugin, a as ESLintPluginContext } from './index-
|
|
2
|
-
export { c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig } from './index-
|
|
3
|
-
export { LintMessage, MessageSeverity, formatMessage } from './helpers/format-message.js';
|
|
1
|
+
import { E as ESLintPluginOptions, P as Plugin, a as ESLintPluginContext } from './index-DiikpUno.js';
|
|
2
|
+
export { c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig, f as __ΩESLintPluginContext, _ as __ΩESLintPluginOptions, e as __ΩESLintPluginResolvedConfig, d as __ΩESLintPluginUserConfig } from './index-DiikpUno.js';
|
|
3
|
+
export { LintMessage, MessageSeverity, __ΩLintMessage, __ΩMessageSeverity, formatMessage } from './helpers/format-message.js';
|
|
4
4
|
import 'eslint';
|
|
5
5
|
import 'eslint/use-at-your-own-risk';
|
|
6
6
|
import '@storm-software/build-tools/types';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as ESLintPluginContext, E as ESLintPluginOptions, c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig } from '../index-
|
|
1
|
+
export { a as ESLintPluginContext, E as ESLintPluginOptions, c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig, f as __ΩESLintPluginContext, _ as __ΩESLintPluginOptions, e as __ΩESLintPluginResolvedConfig, d as __ΩESLintPluginUserConfig } from '../index-DiikpUno.cjs';
|
|
2
2
|
import 'eslint';
|
|
3
3
|
import 'eslint/use-at-your-own-risk';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as ESLintPluginContext, E as ESLintPluginOptions, c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig } from '../index-
|
|
1
|
+
export { a as ESLintPluginContext, E as ESLintPluginOptions, c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig, f as __ΩESLintPluginContext, _ as __ΩESLintPluginOptions, e as __ΩESLintPluginResolvedConfig, d as __ΩESLintPluginUserConfig } from '../index-DiikpUno.js';
|
|
2
2
|
import 'eslint';
|
|
3
3
|
import 'eslint/use-at-your-own-risk';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import 'eslint';
|
|
2
2
|
import 'eslint/use-at-your-own-risk';
|
|
3
|
-
export { a as ESLintPluginContext, E as ESLintPluginOptions, c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig } from '../index-
|
|
3
|
+
export { a as ESLintPluginContext, E as ESLintPluginOptions, c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig, f as __ΩESLintPluginContext, _ as __ΩESLintPluginOptions, e as __ΩESLintPluginResolvedConfig, d as __ΩESLintPluginUserConfig } from '../index-DiikpUno.cjs';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
|
6
6
|
import '@storm-software/config/types';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import 'eslint';
|
|
2
2
|
import 'eslint/use-at-your-own-risk';
|
|
3
|
-
export { a as ESLintPluginContext, E as ESLintPluginOptions, c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig } from '../index-
|
|
3
|
+
export { a as ESLintPluginContext, E as ESLintPluginOptions, c as ESLintPluginResolvedConfig, b as ESLintPluginUserConfig, f as __ΩESLintPluginContext, _ as __ΩESLintPluginOptions, e as __ΩESLintPluginResolvedConfig, d as __ΩESLintPluginUserConfig } from '../index-DiikpUno.js';
|
|
4
4
|
import '@storm-software/build-tools/types';
|
|
5
5
|
import '@storm-software/config-tools/types';
|
|
6
6
|
import '@storm-software/config/types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-eslint",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.24",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin for running ESLint on the codebase.",
|
|
6
6
|
"repository": {
|
|
@@ -88,18 +88,18 @@
|
|
|
88
88
|
"files": ["dist/**/*"],
|
|
89
89
|
"keywords": ["eslint", "powerlines", "storm-software", "powerlines-plugin"],
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@storm-software/config-tools": "^1.188.
|
|
91
|
+
"@storm-software/config-tools": "^1.188.42",
|
|
92
92
|
"@stryke/fs": "^0.32.13",
|
|
93
93
|
"@stryke/path": "^0.19.2",
|
|
94
94
|
"defu": "^6.1.4",
|
|
95
95
|
"eslint": "^9.39.1",
|
|
96
|
-
"powerlines": "^0.
|
|
96
|
+
"powerlines": "^0.23.3"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
|
-
"@powerlines/nx": "^0.10.
|
|
100
|
-
"@storm-software/tsup": "^0.2.
|
|
101
|
-
"@types/node": "^
|
|
99
|
+
"@powerlines/nx": "^0.10.20",
|
|
100
|
+
"@storm-software/tsup": "^0.2.40",
|
|
101
|
+
"@types/node": "^24.10.1"
|
|
102
102
|
},
|
|
103
103
|
"publishConfig": { "access": "public" },
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
105
105
|
}
|