You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@
11
11
12
12
Use our side bar or the **Command Palette** and type `Flow Scanner` to see the list of all available commands.
13
13
14
+
*`Configure Rules` Allows to define rules and expressions as per defined in the [core documentation](https://github.com/Flow-Scanner/lightning-flow-scanner-core).
14
15
*`Scan Flows` allows choosing either a directory or a selection of flows to run the analysis against.
15
-
*More information on the default rules can be found in the [core documentation](https://github.com/Flow-Scanner/lightning-flow-scanner-core).*
16
16
*`Fix Flows` will apply available fixes automatically.
17
17
*`Open Documentation` can be used to reference the documentation.
18
18
@@ -23,7 +23,6 @@ Use our side bar or the **Command Palette** and type `Flow Scanner` to see the l
23
23
|`lightningFlowScanner.SpecifyFiles`| Specify flow file paths instead of a root directory. |`false`|
24
24
|`lightningFlowScanner.NamingConvention`| Specify a REGEX expression to use as Flow Naming convention. |`"[A-Za-z0-9]+_[A-Za-z0-9]+"`|
25
25
|`lightningFlowScanner.APIVersion`| Specify an expression to validate the API version, i.e. '===50'(use at least 50). |`">50"`|
26
-
|`lightningFlowScanner.Reset`| Reset all configurations on every scan |`false`|
Copy file name to clipboardExpand all lines: package.json
+4-8Lines changed: 4 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
},
10
10
"icon": "media/lightningflow.png",
11
11
"description": "A VS Code Extension for analysis and optimization of Salesforce Flows. Scans metadata for 20+ issues such as hardcoded IDs, unsafe contexts, inefficient SOQL/DML operations, recursion risks, and missing fault handling. Supports auto-fixes, rule configurations, and tests integration.",
12
-
"version": "1.7.2",
12
+
"version": "1.8.0",
13
13
"engines": {
14
14
"vscode": "^1.99.1"
15
15
},
@@ -37,11 +37,6 @@
37
37
"type": "string",
38
38
"default": ">50",
39
39
"description": "Specify an expression to validate the API version, i.e. '===50'(use at least 50)."
40
-
},
41
-
"lightningFlowScanner.Reset": {
42
-
"type": "boolean",
43
-
"default": false,
44
-
"description": "Reset all configurations on every scan"
'Readability of a flow is very important. Setting a naming convention for the Flow Name will improve the findability/searchability and overall consistency. You can define your default naming convention using REGEX.',
' The Api Version has been available as an attribute on the Flow since API v50.0 and it is recommended to limit variation and to update them on a regular basis. Set an expression to set a valid range of API versions(Minimum 50).',
0 commit comments