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.
-
- Sign up for GitHub or sign in to edit this page
Here are 344 public repositories matching this topic...
Static analysis tools for all programming languages
-
Updated
Oct 16, 2019 - 498 commits
- Rust
$ cat checkstyle.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl .com/dtds/configuration_1_2.dtd">
<module name="Checker">
<module name="TreeWalker">
<module name="OperatorWrapCheck">
</module>
</module>
</module>
$ cat Test.java
class A {
This seems like a regression of #269
In a very simple project if I have this Rakefile:
require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs.push 'test'
t.pattern = 'test/**/test_*.rb'
end
task :default => :test
And this test helper:
require "minitest/autorun"
require 'simplecov'
SimpleCov.start
And an error occurs, the process exits code 0. However, if I
Issue Scope
- provide an example in the guided tour on following imports in a virtualenv
- clarify CLI argument documentation to show how to pass multiple directories to
--search-path
The Story
I wanted to write an example of checking pip-installed imports using pyre. After reading through the documentation, I found that vanilla `source activate my-venv; pyre --source-directory
Affects PMD Version:
6.17
Rule:
All rulesets.
Description:
PMD output does not inform the user as to the number of rules contravened while running the tool. The user has to look at the output file.
Code Sample demonstrating the issue:
Sep 01, 2019 9:42:45 AM net.sourceforge.pmd.cache.FileAnalysisCache loadFromFile
INFO: Analysis cache loaded
Sep 01, 2019 9:
What is a block?
Copy/paste detector for programming source code.
-
Updated
Oct 16, 2019 - 588 commits
- TypeScript
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
A command line tool to identify unused code.
-
Updated
Oct 14, 2019 - 202 commits
- Haskell
Project Guidelines for the Android Buffer App
-
Updated
Oct 14, 2019 - 44 commits
- Shell
Static code analyzer for TypeScript
-
Updated
Oct 12, 2019 - 503 commits
- Shell
🚀 A command line tool aims to improve front-end engineer workflow and standard, powered by Node.js.
-
Updated
Oct 15, 2019 - 195 commits
- TypeScript
PHP_Depend is an adaption of the established Java development tool JDepend. This tool shows you the quality of your design in the terms of extensibility, reusability and maintainability.
-
Updated
Oct 9, 2019 - 6 commits
- PHP
ಠ_ಠ Vim plugin to disapprove deeply indented code. ಠ_ಠ
-
Updated
Oct 12, 2019 - 38 commits
- Vim script
Hello,
I was wondering if it's possible to run ImgBot in a wiki? Actually, I'm part of a quite big project with a consequent wiki in the main repo (the wiki folder is more than 600Mo !).
So, to light up the wiki, I would like to run ImgBot which is already installed in the repo for the code side of the project
I don't know if it's possible, if you're curre
Code Smells
Landscape currently detects 43 code smells here
https://landscape.io/github/OrkoHunter/pep8speaks/17/messages/smell
Not all, but most of them should be easy to fix.
Rule request
Forbid or annoy on iteration over the functions which returns result with unknown order. First line candidates are about file listing functions like glob.glob
or os.listdir
and the simiar onces.
Thesis
Relay on filenames ordering on FS caused a critical bug, which could be easily prevented. Linter must known such edge cases and at least warn user about them.
R
let x = { default: 42}; // "default" is highlighted as keyword
Static code analysis to find violations in a dependency graph
-
Updated
Oct 16, 2019 - 659 commits
- PHP
Show some ❤️ to Node.js process errors
-
Updated
Oct 14, 2019 - 1 commits
- JavaScript
Code quality apps
LGTM
Find and prevent zero-days and other critical bugs, with customizable alerts and automated code review
Report.Ci
Report unit tests & build logs to github with annotations
AnyLint
Code linting on all your commits without any configuration needed
Size Plugin
A Github bot for size-plugin
infer version v0.15.0
in my case, 0xFFFF or 0xFFFFFFFF is a common initializer and there are a lot of this semantics in our code. I would like to ignore those harmless. but if I turn off liveness checker, I worry about missing some truely harmful bugs. Does Infer provide some filtering option or method?