This repository was archived by the owner on Oct 7, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +14
-18
lines changed Expand file tree Collapse file tree 5 files changed +14
-18
lines changed Original file line number Diff line number Diff line change 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" ` |
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11import {
22 IRulesConfig ,
33 getRules ,
4- getBetaRules ,
54 AdvancedRule ,
65} from 'lightning-flow-scanner-core' ;
76import * 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' } ;
You can’t perform that action at this time.
0 commit comments