A connector to use edge diagnostics adapter
in sonarwhal.
First, you need to install sonarwhal:
npm install sonarwhalThen, install the new connector:
npm install @sonarwhal/connector-edge- This connector needs run as Administrator.
onLoadingFailedevent is not dispatched.Securityis not implemented.- Edge has to open a URL by default so, before navigate,
you can get some events for that URL. To avoid that,
you should enable the property
useTabUrltotrueand then set the propertytabUrlwith an url to an empty html in the connector options. You can use the urlhttps://empty.sonarwhal.com/.
Configure the connector name in your .sonarwhalrc configuration file:
{
"connector": {
"name": "connector-edge"
}
}Configure the adapter to use an empty HTML opening a new browser or tab:
{
"connector": {
"name": "connector-edge",
"options": {
"useTabUrl": true,
"tabUrl": "https://empty.sonarwhal.com/"
}
}
}This project adheres to the JS Foundation's code of conduct.
By participating in this project you agree to abide by its terms.
The code is available under the Apache 2.0 license.