Skip to content

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 344 public repositories matching this topic...

checkstyle
strkkk
strkkk commented Jul 10, 2019
$ 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 {
searls
searls commented Feb 21, 2016

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

SKalt
SKalt commented Oct 28, 2018

Issue Scope

  1. provide an example in the guided tour on following imports in a virtualenv
  2. 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

Fernal73
Fernal73 commented Sep 1, 2019

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:
tbekolay
tbekolay commented Aug 29, 2018

Question

Apologies if this has been asked before, but I'm curious what pylint considers a "block" and whether that could be documented more explicitly. Right now, the docs state:

add "#pylint: disable=some-message,another-one" at the desired block level or at the end of the desired line

Splaktar
Splaktar commented Nov 11, 2018

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

RoiArthurB
RoiArthurB commented Aug 23, 2019

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

kxepal
kxepal commented Oct 14, 2019

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

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

See more Code quality apps
Loading…
You can’t perform that action at this time.