Skip to content
#

quality

Automate your code review with style, quality, security, and test‑coverage checks when you need them most. Code quality is intended to keep complexity down and runtime up.

Here are 420 public repositories matching this topic...

phpinsights
opensource
tunnckoCore
tunnckoCore commented Feb 9, 2018

Which will behave like that

let settings = await prettyConfig('rollup', { configFiles })

if (!settings) {
  settings = await prettyConfig('rolldown', { configFiles })
}
console.log(settings)

instead of above we can hide it to look like that

const settings = await prettyConfig(['rollup', 'rolldown'], { configFiles })

if (!settings) {
  console.log('no config file
sonar-cnes-report
agusmba
agusmba commented Apr 15, 2020

First of all, thank you for making this tool!
I tried it today, and saw that the excel report could be improved with data already present in the docx report

Expected behavior

The excel report includes summary metrics, such as

Quality Gate Reliability Security Maintainability Coverage Duplication

and

  | Cyclomatic Complexity | Cognitive

You can’t perform that action at this time.