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.
// forge.config.js
module.exports = {
plugins: [
[
'@electron-forge/plugin-electronegativity',
{
isSarif: true
}
]
]
};
Specified checks to run.
Specify a range to run Electron upgrade checks. For example, '7..8'
checks an upgrade
from Electron 7 to Electron 8.
Whether to show relative paths for files.
Defaults to false
.
Whether to save the output in SARIF or CSV format.
Defaults to CSV.
Save the results to a file in CSV or SARIF format.
Specify additional parser plugins to use. For example, optionalChaining
.
Defaults to empty array ([]
)
Only return findings with the specified level of severity or above.
Defaults to informational
.
Only return findings with the specified level of confidence or above.
Defaults to
tentative
.