> For the complete documentation index, see [llms.txt](https://www.electronforge.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.electronforge.io/config/plugins/electronegativity.md).

# Electronegativity Plugin

The Electronegativity plugin integrates Doyensec's [Electronegativity tool](https://github.com/doyensec/electronegativity#electronegativity) into the Electron Forge workflow. After packaging your Electron app, it identifies any known misconfigurations and security anti-patterns.

## Installation

```shell
npm install --save-dev @electron-forge/plugin-electronegativity
```

## Usage

Add this plugin to the [`plugins`](/config/configuration.md#plugins) array in your Forge configuration. All [programmatic options for Electronegativity](https://github.com/doyensec/electronegativity#programmatically), except for `input` and `electronVersion`.

### Example

{% code title="forge.config.js" %}

```javascript
module.exports = {
  // ...
  plugins: [
    {
      name: '@electron-forge/plugin-electronegativity',
      config: {
        isSarif: true
      }
    }
  ]
  // ...
};
```

{% endcode %}
