Skip to content

nowarp/blueprint-misti

Repository files navigation

blueprint-misti

A plugin for the Blueprint Framework that simplifies your workflow with the Misti static analyzer.

Getting Started

  1. Install Soufflé to use all detectors provided by Misti.

  2. Add this plugin as a dependency of your Blueprint project:

yarn add @nowarp/blueprint-misti
  1. Add this configuration to blueprint.config.ts:
import { MistiPlugin } from '@nowarp/blueprint-misti';
export const config = {
  plugins: [
    new MistiPlugin(),
  ],
};

Usage

Run the following command:

yarn blueprint misti

It will run the analysis of the available project, if there is one, or show an interactive window to select a project:

img

See the documentation for the available configuration options.

Resources