30 open-source projects similar to whitesmith/rubycritic, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Rubycritic alternative.
Reek is a static code analyzer for Ruby projects designed to identify design flaws and maintainability issues known as code smells. It functions as a quality assurance tool that inspects source code without executing it to find structural weaknesses and architectural debt. The analyzer identifies specific patterns such as large classes, long methods, and uncommunicative naming. It also detects more complex design issues, including feature envy, data clumps, simulated polymorphism, and control coupling. The tool includes capabilities for issue baselining to manage legacy code and configuratio
cloc is a codebase metrics tool and multi-language code analyzer designed to count blank lines, comment lines, and physical lines of code. It serves as a source code line counter and report generator that identifies file types to calculate source volume across a wide variety of programming languages. The tool distinguishes itself by providing codebase version comparison to measure relative changes in source and comment lines between two versions of a directory or archive. It also supports the definition of custom languages and the extension of language recognition by loading custom comment fi
prealloc is a Go static analysis tool to find slice declarations that could potentially be preallocated.
nargs is a Go static analysis tool to find unused arguments in function declarations.
Shellharden is a shell script hardening tool and linter designed to improve the security and reliability of Bash scripts. It functions as an automated utility that rewrites scripts to follow industry standards for quoting and security practices. The project provides an optimizer and standardizer that replaces unsafe patterns and aliases with safer functional equivalents. It includes a syntax highlighter that uses visual markers and colorization to indicate vulnerabilities and areas where quoting corrections are required. The tool covers a broad range of capabilities including automated safet
App Metrics is an open-source and cross-platform .NET library used to record and report metrics within an application.
This project is a comprehensive, curated directory of static analysis, linting, and security scanning utilities. It serves as a central resource for developers to discover, compare, and select tools based on specific programming languages, licensing models, and integration requirements. The directory distinguishes itself by providing deep metadata for each listed utility, including community-driven popularity rankings, maintenance status, and deployment methods. By aggregating these tools into a single searchable index, it enables teams to identify solutions for enforcing coding standards, ma
:sparkles: Monorepo for all the tooling related to using ESLint with Angular
A Github Action that runs pycodestyle and leaves a comment on your pull request with style errors.
GitHub action to run Go lint checks on PR event
A Github Action to statically validate Fastlane metadata for Android (supply).
A code analyzer for Julia. No need for additional type annotations.
A Rake task gem that helps you find the unused routes and controller actions for your Rails 3+ app
Static analyzer and linter for Clojure code that sparks joy
A GitHub action to run hadolint and reports violations given a Dockerfile within a repository
Detect concurrency and memory bugs and possible panic locations in Rust projects
dogsled is a Go static analysis tool to find assignments/declarations with too many blank identifiers.
Github Action helps you check your code with PHP_CodeSniffer
SimpleCov is a Ruby code coverage tool and analysis engine used to track which lines, branches, and methods of code execute during tests. It functions as a coverage threshold enforcer and test suite aggregator, recording execution data to identify untested areas of an application. The tool distinguishes itself through the ability to merge coverage results from parallel worker processes and subprocesses into a single unified report. It supports baseline comparison to detect coverage regressions and can gather data from code executed via dynamic evaluation methods, such as those used in templat
Fukuzatsu (Japanese for "complexity") is a tool for measuring code complexity in Ruby class files. Its analysis generates scores based on cyclomatic complexity algorithms, which in simplest terms measure the number of execution paths through a given piece of code. (You can learn more about…