The Wayback Machine - https://web.archive.org/web/20210817105505/https://github.com/topics/quality
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 512 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
simonrenoult
simonrenoult commented May 3, 2020

What problem are you trying to solve?

Since code-complexity is mostly used as a static analysis tool, it would be nice to be able to analyze any project, without having to pull it locally.

Currently, the only required argument is the directory to analyze. We could also support a URL.

Describe the feature

Support URL in addition to path, example:

$ npx code-complex