Electronegativity Plugin
Check for misconfigurations and security anti-patterns with the Electronegativity tool.
The Electronegativity plugin integrates Doyensec's Electronegativity tool into the Electron Forge workflow. After packaging your Electron app, it identifies any known misconfigurations and security anti-patterns.
Installation
npm install --save-dev @electron-forge/plugin-electronegativityUsage
Add this plugin to the plugins array in your Forge configuration. All programmatic options for Electronegativity, except for input and electronVersion.
Example
module.exports = {
  // ...
  plugins: [
    {
      name: '@electron-forge/plugin-electronegativity',
      config: {
        isSarif: true
      }
    }
  ]
  // ...
};Last updated
Was this helpful?
