2.24.0 • Published 4 days ago

lightning-flow-scanner v2.24.0

Weekly downloads
-
License
AGPL-3.0
Repository
github
Last release
4 days ago

Lightning Flow Scanner Banner Analyze Salesforce Flows for optimization and ensure adherence to Industry Best Practices.

FlowScan example

*Also available as VS Code Extension

Table of contents

Installation

Install with SFDX:

sfdx plugins:install lightning-flow-scanner

Install with NPM:

npm install -g lightning-flow-scanner

Usage

sfdx flow:scan [options]

To learn more about the default rules and options, see the core documentation.

Options

  -c, --config <path>                                               provide a path to the configuration file.

  -f, --failon                                                      provide a threshold level for returning status 1

  -p, --sourcepath <C:\..\flow1.flow, C:\..\flow2.flow>             provide a comma-separated list of flow paths to scan.

  -u, --targetusername <username>                                   retrieve the latest metadata from the target before the scan.

  -d, --directory <C:\..\force-app\main\default\flows>              provide a directory to scan.

  --json                                                            set output format as json.

  --loglevel=(trace|debug|info|warn|error|fatal)                    [default: warn] logging level.

Examples

You can test the scanner by simply opening an existing project that contains flows and running the scan without any configurations or parameters. This way all the default rules are autmatically included in the scan.

sfdx flow:scan
sfdx flow:scan --json
sfdx flow:scan --config path/to/.flow-scanner.json

Configuration

Create a .flow-scanner.json file in order to configure:

  • The ruleset to be executed.
  • The severity of violating any specific rule.
  • Custom expressions or rule implementations.
  • Any known exceptions that should be ignored during scanning.
{
    "rules": {
        ...
    },
    "exceptions": {
        ...
    }
}

Note: if you prefer YAML format, you can create a .flow-scanner.yml file using the same format.

Defining the severity per rule

When the severity is not provided it will be error by default. Other available values for severity are warning and note. Define the severity per rule as shown in the following example.

{
  "rules": {
    "FlowDescription": {
      "severity": "warning"
    },
    "UnusedVariable": {
      "severity": "error"
    }
  }
}

Specifying an exception

Specifying exceptions can be done by flow, rule and result(s), as shown in the following example.

{
  "exceptions": {
    "AssignTaskOwner": {
      "UnusedVariable": [
        "somecount"
      ]
    },
    "GetAccounts":{
      "UnusedVariable": [
        "incvar"
      ]
    }
  }
}

Configuring an expression

Some rules have additional attributes to configure, such as the expression, that will overwrite default values. These can be configured in the same way as severity as shown in the following example.

{
  "rules": {
    "APIVersion":
    {
        "severity": "error",
        "expression": "===58"
    },
    "FlowName":
    {
        "severity": "error",
        "expression": "[A-Za-z0-9]"
    }
  }
}

Loading Custom Rules

To load custom rules using the Lightning Flow Scanner Core, you can utilize the path attribute within the rules section of your configurations. This attribute allows you to specify the path to your custom rule class, enabling seamless integration of organization-specific rule definitions into the scanner's ruleset.

{
    "rules": {
        "<RuleName>": {
            "path": "<yourtypescriptfilepath>"
        }
    }
}

Custom Rules can either leverage our Flow compiler or be completely customized typescript functions. For more details and examples on custom rules, refer to our Custom Rule Creation Guide

Development Setup

Preparing for Changes

  1. Clone Project: Clone the Lightning Flow Scanner SFDX plugin project from the repository.
  2. Install Dependencies: Open the directory and run npm install or yarn install in the terminal to install the necessary dependencies.
  3. Optional: Make changes: For example, if you want to upgrade the core module using npm, you can use the command: npm update lightning-flow-scanner-core
  4. Prepack: Execute npm run prepack to build the plugin locally and prepare for packaging.
  5. Link Plugin: Link the plugin to your Salesforce DX environment using sfdx plugins link ..

Debugging the Plugin

  1. Linking Core Module: You may need to clone and link the lightning-flow-scanner-core locally to your project. This step is necessary if you're making changes to the core module and want those changes reflected in the plugin. You can link the core module by navigating to its directory and running:
npm link

Then, navigate to the sfdx plugin directory and run:

npm link lightning-flow-scanner-core
  1. Run Plugin: In the terminal of your example flow project (or any other project intended for scanning), run the following command to start the plugin with debugging enabled:
NODE_OPTIONS=--inspect-brk /path/to/lightning-flow-scanner-sfdx/bin/run flow:scan
  1. Attach Debugger: Open your local Salesforce DX project in Visual Studio Code, set desired breakpoints, and attach the debugger to the remote session.

For more detailed information, you can refer to the wiki of the Salesforce CLI repository.

2.24.0

4 days ago

2.23.0

7 days ago

2.22.0

29 days ago

2.21.0

1 month ago

2.20.0

2 months ago

2.19.0

2 months ago

2.18.0

2 months ago

2.17.0

2 months ago

2.16.0

6 months ago

2.15.0

6 months ago

2.13.0

8 months ago

2.14.0

8 months ago

2.12.0

9 months ago

1.2.0

10 months ago

1.1.0

10 months ago

2.11.0

9 months ago

2.3.0

10 months ago

2.2.0

10 months ago

2.5.0

10 months ago

2.10.0

9 months ago

2.4.0

10 months ago

2.7.0

9 months ago

2.6.0

9 months ago

2.9.0

9 months ago

2.8.0

9 months ago

2.1.0

10 months ago

2.0.0

10 months ago

0.0.10

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago