description |
---|
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.
npm install --save-dev @electron-forge/plugin-electronegativity
Add this plugin to the plugins
array in your Forge configuration. All programmatic options for Electronegativity, except for input
and electronVersion
.
{% code title="forge.config.js" %}
module.exports = {
// ...
plugins: [
{
name: '@electron-forge/plugin-electronegativity',
config: {
isSarif: true
}
}
]
// ...
};
{% endcode %}