Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit 02639c0

Browse files
committed
qf
1 parent 0dfa98b commit 02639c0

File tree

5 files changed

+14
-18
lines changed

5 files changed

+14
-18
lines changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
[![Flow Overview](media/demo.gif)](https://github.com/Lightning-Flow-Scanner)
44

5-
**Also available as [Salesforce CLI Plugin](https://github.com/Lightning-Flow-Scanner/lightning-flow-scanner-sfdx)*
6-
7-
## [🚨 Deprecation Notice](https://github.com/Lightning-Flow-Scanner) ****No new roadmap or updates** **moving forward.
5+
## [🚨 Deprecation Notice — August, 2025](https://github.com/Lightning-Flow-Scanner)
86

97
## Features/Commands
108

@@ -23,8 +21,8 @@ The `Calculate Flow Coverage` command calculates Flow Test coverage percentages
2321

2422
<!-- commands -->
2523

26-
| Command | Title |
27-
| -------------------------------------------------- | ----------------------- |
24+
| Command | Title |
25+
| ------------------------------------------------ | ----------------------- |
2826
| `lightningflowscanner.viewDefaultFlowRules` | Default Flow Rules |
2927
| `lightningflowscanner.scanFlows` | Scan Flows |
3028
| `lightningflowscanner.debugView` | Debug Flow Scanner View |
@@ -36,8 +34,8 @@ The `Calculate Flow Coverage` command calculates Flow Test coverage percentages
3634

3735
<!-- configs -->
3836

39-
| Key | Description | Type | Default |
40-
| ----------------------------------------- | --------------------------------------------------------------------------------- | ----------- | ------------------------------- |
37+
| Key | Description | Type | Default |
38+
| --------------------------------------- | --------------------------------------------------------------------------------- | --------- | ----------------------------- |
4139
| `lightningFlowScanner.SpecifyFiles` | Specify flow file paths instead of a root directory. | `boolean` | `false` |
4240
| `lightningFlowScanner.NamingConvention` | Specify a REGEX expression to use as Flow Naming convention. | `string` | `"[A-Za-z0-9]+_[A-Za-z0-9]+"` |
4341
| `lightningFlowScanner.APIVersion` | Specify an expression to validate the API version, i.e. '===50'(use at least 50). | `string` | `">50"` |

package-lock.json

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
},
183183
"dependencies": {
184184
"convert-array-to-csv": "^2.0.0",
185-
"lightning-flow-scanner-core": "4.51.0",
185+
"lightning-flow-scanner-core": "^5.1.0",
186186
"tabulator-tables": "^6.3.1",
187187
"uuid": "^11.0.5",
188188
"xml2js": "^0.6.2",

src/commands/handlers.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,8 @@ private async checkExtensionAutoUpdate() {
6666
await this.ruleConfiguration();
6767
return;
6868
}
69-
const allRules: core.AdvancedRule[] = [
70-
...core.getBetaRules(),
71-
...core.getRules(),
69+
const allRules: core.IRuleDefinition[] = [
70+
...core.getRules()
7271
];
7372
const ruleConfig = { rules: {} };
7473

src/providers/config-provider.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {
22
IRulesConfig,
33
getRules,
4-
getBetaRules,
54
AdvancedRule,
65
} from 'lightning-flow-scanner-core';
76
import * as vsce from 'vscode';
@@ -50,7 +49,6 @@ export class ConfigProvider {
5049
): Promise<Configuration> {
5150
const allRules: Record<string, { severity: string }> = [
5251
...getRules(),
53-
...getBetaRules(),
5452
].reduce(
5553
(acc, rule: AdvancedRule) => {
5654
acc[rule.name] = { severity: 'error' };

0 commit comments

Comments
 (0)