UNPKG

lightning-flow-scanner

Version:

A Salesforce CLI plugin for static analysis and optimization of 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 configurat

190 lines (140 loc) 5.61 kB
<p align="center"> <a href="https://github.com/Flow-Scanner"> <img src="docs/images/banner.png" style="width: 41%;" /> </a> </p> <p align="center">Scans for unsafe contexts, hardcoded IDs, and other issues to optimize your Flows.</p> ![FlowScan example](docs/images/sfdxgif.gif) - [Installation](#installation) - [Usage](#usage) - [Options](#options) - [Examples](#examples) - [Configuration](#configuration) - [Defining the severity per rule](#defining-the-severity-per-rule) - [Specifying an exception](#specifying-an-exception) - [Configuring an expression](#configuring-an-expression) - [Development](#development) ## Installation Install with SFDX: ```sh-session sfdx plugins:install lightning-flow-scanner ``` Install with NPM: ```sh-session npm install -g lightning-flow-scanner ``` ## Usage ```sh-session sfdx flow:scan [options] ``` ***To learn more about the default rules and options, see the [core documentation](https://flow-scanner.github.io/lightning-flow-scanner-core/).*** ### Options ```sh-session -c, --config <path> provide a path to the configuration file. -f, --failon provide a threshold level for returning status 1 -p, --files <C:\..\flow1.flow, C:\..\flow2.flow> provide a space-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. ```sh-sessions sfdx flow:scan ``` ```sh-sessions sfdx flow:scan --json ``` ```sh-sessions 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. ```json { "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. ```json { "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. ```json { "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. ```json { "rules": { "APIVersion": { "severity": "error", "expression": "===58" }, "FlowName": { "severity": "error", "expression": "[A-Za-z0-9]" } } } ``` ## Development ### Preparing for Changes 1. **Clone Project**: Clone the Lightning Flow Scanner Salesforce CLI repository. 2. **Install Dependencies**: Open the directory and run `npm install` in the terminal to install the 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: ```bash npm link ``` Then, navigate to the sfdx plugin directory and run: ```bash 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: ```bash NODE_OPTIONS=--inspect-brk /path/to/lightning-flow-scanner-cli/bin/run flow:scan ``` 2. **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](https://github.com/salesforcecli/cli/wiki) of the Salesforce CLI repository. Want to help improve Lightning Flow Scanner? See our [Contributing Guidelines](https://github.com/Flow-Scanner/lightning-flow-scanner-core/blob/main/CONTRIBUTING.md).