-
Updated
Dec 8, 2020 - OCaml
Code 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 456 public repositories matching this topic...
-
Updated
Dec 9, 2020 - Rust
-
Updated
Dec 8, 2020 - Java
-
Updated
Dec 9, 2020 - OCaml
-
Updated
Sep 30, 2020 - JavaScript
Affects PMD Version: 6.30.0-SNAPSHOT
Rule: JUnitAssertionsShouldIncludeMessage
Description:
Code Sample demonstrating the issue:
https://chunk.io/pmd/fc7db65b2c6a46eca4c9a0c3012482e2/diff/spring-framewo
-
Updated
Dec 2, 2020 - Python
-
Updated
Dec 8, 2020 - Go
-
Updated
Dec 7, 2020 - JavaScript
-
Updated
Dec 1, 2020 - Ruby
-
Updated
Dec 1, 2020 - TypeScript
And, ideally, a configurable list of annotations denoting generated source or AST structures.
See #105 for the kind of issue this seeks to avoid, and the limitations of this fix.
Rule request
Thesis
Detect if both possible results of a ternary operator return the same value.
# bad
# (all results below can be replaced by just `a`)
a if ... else a
a if a is not None else None
a if a != b else b
b if a == b else a
# ok
a if ... else c
a.split() if a is not None else None
a if a != b else cReasoning
It is either a bug or unnec
-
Updated
Nov 3, 2020
-
Updated
Dec 4, 2020 - JavaScript
AngularJS Material uses gulp to build everything, so we're looking at using https://github.com/ivogabe/gulp-typescript for our builds. It seems like something could be built similar to the webpack plugin in order to have the types added during the Gulp pipeline.
It's not clear if typewiz-node could help with this already or not. We don't have a single main.ts to point to. Should we do somethi
-
Updated
May 28, 2020 - Haskell
-
Updated
Dec 8, 2020 - Dockerfile
-
Updated
May 19, 2020 - Shell
-
Updated
Jun 22, 2020 - Shell
There is a gap in the docs about managing your installation using github settings and imgbot settings
Main points:
For managing your imgbot installation check out github's docs.
They offer 2 options for managing this. You can select which repositories you want it installed in, or you can choose "all repositories including all future repositories".
You can log in and see your repos and req
-
Updated
Dec 2, 2020 - PHP
let x = { default: 42}; // "default" is highlighted as keyword
-
Updated
Jun 25, 2019 - Vim script
-
Updated
Dec 7, 2020 - Ruby
-
Updated
May 28, 2020 - Python
Code quality apps
Code Inspector
Code Quality, Code Reviews and Technical Debt evaluation made easy
DeepSource
Identify and fix bug risks, anti-patterns, performance issues, and security flaws using static analysis
Code Climate
Automated code review for technical debt and test coverage
codebeat
Code review expert on demand. Automated for mobile and web
Datree
Policy enforcement solution for confident and compliant code
Codecov | Code Coverage Reports
Automatic test report merging for all CI and languages into a single code coverage report directly into your pull request
DeepScan
Advanced static analysis for automatically finding runtime errors in JavaScript code
Imgbot
A GitHub app that optimizes your images
Coveralls
Ensure that new code is fully covered, and see coverage trends emerge. Works with any CI service
Restyled.io
Restyle Pull Requests as they're opened
CodeFactor
Automated code review for GitHub
CommitCheck
CommitCheck ensures your commit messages are consistent and contain all required information
LGTM
Find and prevent zero-days and other critical bugs, with customizable alerts and automated code review
Sider
Automatically analyze pull request against custom per-project rulesets and best practices
Codacy
Automated code reviews to help developers ship better software, faster
We have a problem: if files aren't loaded/required we don't have branch data. If they are added through
track_fileswe give it 0/0 branches which we show as 100% coverage (all possible branches are covered).That math is "wrong" though here because there are branches but we don't know what they are. We should probably count total branches here as "unkown" and establish that in our "math unive