⚙️ A curated list of static analysis (SAST) tools for all programming languages, config files, build tools, and more.

Overview
Analysis Tools

This repository lists static analysis tools for all programming languages, build tools, config files and more.
The official website, analysis-tools.dev is based on this repository and adds rankings, user comments, and additional resources like videos for each tool.

CI

What is Static Analysis?

Static program analysis is the analysis of computer software that is performed without actually executing programs — Wikipedia

The most important thing I have done as a programmer in recent years is to aggressively pursue static code analysis. Even more valuable than the hundreds of serious bugs I have prevented with it is the change in mindset about the way I view software reliability and code quality. — John Carmack (Creator of Doom)

Sponsors

This project would not be possible without the generous support of our sponsors.

If you also want to support this project, head over to our Github sponsors page.

Meaning of Symbols:

  • ©️ stands for proprietary software. All other tools are Open Source.
  • ℹ️ indicates that the community does not recommend to use this tool for new projects anymore. The icon links to the discussion issue.
  • ⚠️ means that this tool was not updated for more than 1 year, or the repo was archived.

Pull requests are very welcome!
Also check out the sister project, awesome-dynamic-analysis.

Table of Contents

Programming Languages

Show languages

Multiple languages

Other


Programming Languages

ABAP

  • abaplint - Linter for ABAP, written in TypeScript.
  • abapOpenChecks - Enhances the SAP Code Inspector with new and customizable checks.

Ada

  • Codepeer ©️ - Detects run-time and logic errors.
  • Polyspace for Ada ©️ - Provide code verification that proves the absence of overflow, divide-by-zero, out-of-bounds array access, and certain other run-time errors in source code.
  • SPARK ©️ - Static analysis and formal verification toolset for Ada.

Assembly

  • STOKE ⚠️ - A programming-language agnostic stochastic optimizer for the x86_64 instruction set. It uses random search to explore the extremely high-dimensional space of all possible program transformations.

Awk

  • gawk --lint - Warns about constructs that are dubious or nonportable to other awk implementations.

C

  • Astrée ©️ - Astrée automatically proves the absence of runtime errors and invalid con­current behavior in C/C++ applications. It is sound for floating-point computations, very fast, and exceptionally precise. The analyzer also checks for MISRA/CERT/CWE/Adaptive Autosar coding rules and supports qualification for ISO 26262, DO-178C level A, and other safety standards. Jenkins and Eclipse plugins are available.
  • CBMC - Bounded model-checker for C programs, user-defined assertions, standard assertions, several coverage metric analyses.
  • clang-tidy - clang static analyser.
  • clazy - Qt-oriented static code analyzer based on the Clang framework. clazy is a compiler plugin which allows clang to understand Qt semantics. You get more than 50 Qt related compiler warnings, ranging from unneeded memory allocations to misusage of API, including fix-its for automatic refactoring.
  • CMetrics - Measures size and complexity for C files.
  • CPAchecker - A tool for configurable software verification of C programs. The name CPAchecker was chosen to reflect that the tool is based on the CPA concepts and is used for checking software programs.
  • cppcheck - Static analysis of C/C++ code.
  • CppDepend ⚠️ ©️ - Measure, query and visualize your code and avoid unexpected issues, technical debt and complexity.
  • cpplint - Automated C++ checker that follows Google's style guide.
  • cqmetrics ⚠️ - Quality metrics for C code.
  • CScout ⚠️ - Complexity and quality metrics for for C and C preprocessor code.
  • ESBMC - ESBMC is an open source, permissively licensed, context-bounded model checker based on satisfiability modulo theories for the verification of single- and multi-threaded C/C++ programs.
  • flawfinder - Finds possible security weaknesses.
  • flint++ - Cross-platform, zero-dependency port of flint, a lint program for C++ developed and used at Facebook.
  • Frama-C - A sound and extensible static analyzer for C code.
  • Helix QAC ©️ - Enterprise-grade static analysis for embedded software. Supports MISRA, CERT, and AUTOSAR coding standards.
  • IKOS - A sound static analyzer for C/C++ code based on LLVM.
  • Joern - Open-source code analysis platform for C/C++ based on code property graphs
  • LDRA ©️ - A tool suite including static analysis (TBVISION) to various standards including MISRA C & C++, JSF++ AV, CWE, CERT C, CERT C++ & Custom Rules.
  • PC-lint ©️ - Static analysis for C/C++. Runs natively under Windows/Linux/MacOS. Analyzes code for virtually any platform, supporting C11/C18 and C++17.
  • Phasar - A LLVM-based static analysis framework which comes with a taint and type state analysis.
  • Polyspace Bug Finder ©️ - Identifies run-time errors, concurrency issues, security vulnerabilities, and other defects in C and C++ embedded software.
  • Polyspace Code Prover ©️ - Provide code verification that proves the absence of overflow, divide-by-zero, out-of-bounds array access, and certain other run-time errors in C and C++ source code.
  • scan-build - Analyzes C/C++ code using LLVM at compile-time.
  • splint - Annotation-assisted static program checker.
  • SVF - A static tool that enables scalable and precise interprocedural dependence analysis for C and C++ programs.
  • vera++ - Vera++ is a programmable tool for verification, analysis and transformation of C++ source code.

C#

  • .NET Analyzers - An organization for the development of analyzers (diagnostics and code fixes) using the .NET Compiler Platform.
  • ArchUnitNET - A C# architecture test library to specify and assert architecture rules in C# for automated testing.
  • code-cracker - An analyzer library for C# and VB that uses Roslyn to produce refactorings, code analysis, and other niceties.
  • CSharpEssentials ⚠️ - C# Essentials is a collection of Roslyn diagnostic analyzers, code fixes and refactorings that make it easy to work with C# 6 language features.
  • Designite ©️ - Designite supports detection of various architecture, design, and implementation smells, computation of various code quality metrics, and trend analysis.
  • Gendarme - Gendarme inspects programs and libraries that contain code in ECMA CIL format (Mono and .NET).
  • Infer# - InferSharp (also referred to as Infer#) is an interprocedural and scalable static code analyzer for C#. Via the capabilities of Facebook's Infer, this tool detects null pointer dereferences and resource leaks.
  • NDepend ©️ - Measure, query and visualize your code and avoid unexpected issues, technical debt and complexity.
  • Puma Scan ⚠️ - Puma Scan provides real time secure code analysis for common vulnerabilities (XSS, SQLi, CSRF, LDAPi, crypto, deserialization, etc.) as development teams write code in Visual Studio.
  • Roslynator - A collection of 190+ analyzers and 190+ refactorings for C#, powered by Roslyn.
  • VSDiagnostics ⚠️ - A collection of static analyzers based on Roslyn that integrates with VS.
  • Wintellect.Analyzers - .NET Compiler Platform ("Roslyn") diagnostic analyzers and code fixes.

C++

  • Astrée ©️ - Astrée automatically proves the absence of runtime errors and invalid con­current behavior in C/C++ applications. It is sound for floating-point computations, very fast, and exceptionally precise. The analyzer also checks for MISRA/CERT/CWE/Adaptive Autosar coding rules and supports qualification for ISO 26262, DO-178C level A, and other safety standards. Jenkins and Eclipse plugins are available.
  • CBMC - Bounded model-checker for C programs, user-defined assertions, standard assertions, several coverage metric analyses.
  • clang-tidy - clang static analyser.
  • clazy - Qt-oriented static code analyzer based on the Clang framework. clazy is a compiler plugin which allows clang to understand Qt semantics. You get more than 50 Qt related compiler warnings, ranging from unneeded memory allocations to misusage of API, including fix-its for automatic refactoring.
  • CMetrics - Measures size and complexity for C files.
  • cppcheck - Static analysis of C/C++ code.
  • CppDepend ⚠️ ©️ - Measure, query and visualize your code and avoid unexpected issues, technical debt and complexity.
  • cpplint - Automated C++ checker that follows Google's style guide.
  • cqmetrics ⚠️ - Quality metrics for C code.
  • CScout ⚠️ - Complexity and quality metrics for for C and C preprocessor code.
  • ESBMC - ESBMC is an open source, permissively licensed, context-bounded model checker based on satisfiability modulo theories for the verification of single- and multi-threaded C/C++ programs.
  • flawfinder - Finds possible security weaknesses.
  • flint++ - Cross-platform, zero-dependency port of flint, a lint program for C++ developed and used at Facebook.
  • Frama-C - A sound and extensible static analyzer for C code.
  • Helix QAC ©️ - Enterprise-grade static analysis for embedded software. Supports MISRA, CERT, and AUTOSAR coding standards.
  • IKOS - A sound static analyzer for C/C++ code based on LLVM.
  • Joern - Open-source code analysis platform for C/C++ based on code property graphs
  • LDRA ©️ - A tool suite including static analysis (TBVISION) to various standards including MISRA C & C++, JSF++ AV, CWE, CERT C, CERT C++ & Custom Rules.
  • PC-lint ©️ - Static analysis for C/C++. Runs natively under Windows/Linux/MacOS. Analyzes code for virtually any platform, supporting C11/C18 and C++17.
  • Phasar - A LLVM-based static analysis framework which comes with a taint and type state analysis.
  • Polyspace Bug Finder ©️ - Identifies run-time errors, concurrency issues, security vulnerabilities, and other defects in C and C++ embedded software.
  • Polyspace Code Prover ©️ - Provide code verification that proves the absence of overflow, divide-by-zero, out-of-bounds array access, and certain other run-time errors in C and C++ source code.
  • scan-build - Analyzes C/C++ code using LLVM at compile-time.
  • splint - Annotation-assisted static program checker.
  • SVF - A static tool that enables scalable and precise interprocedural dependence analysis for C and C++ programs.
  • vera++ - Vera++ is a programmable tool for verification, analysis and transformation of C++ source code.

Clojure

  • clj-kondo - A linter for Clojure code that sparks joy. It informs you about potential errors while you are typing.

CoffeeScript

  • coffeelint - A style checker that helps keep CoffeeScript code clean and consistent.

Crystal

  • ameba - A static code analysis tool for Crystal.
  • crystal - The Crystal compiler has built-in linting functionality.

Dart

  • Dart Code Metrics - Additional linter for Dart. Reports code metrics, checks for anti-patterns and provides additional rules for Dart analyzer.
  • effective_dart - Linter rules corresponding to the guidelines in Effective Dart
  • lint - An opinionated, community-driven set of lint rules for Dart and Flutter projects. Like pedantic but stricter
  • Linter for dart - Style linter for Dart.

Delphi

  • Fix Insight ©️ - A free IDE Plugin for static code analysis. A Pro edition includes a command line tool for automation purposes.
  • Pascal Analyzer ©️ - A static code analysis tool with numerous reports. A free Lite version is available with limited reporting.
  • Pascal Expert ©️ - IDE plugin for code analysis. Includes a subset of Pascal Analyzer reporting capabilities and is available for Delphi versions 2007 and later.

Dlang

  • D-scanner - D-Scanner is a tool for analyzing D source code.

Elixir

  • credo - A static code analysis tool with a focus on code consistency and teaching.
  • dialyxir - Mix tasks to simplify use of Dialyzer in Elixir projects.
  • sobelow - Security-focused static analysis for the Phoenix Framework.

Elm

  • elm-analyse ⚠️ - A tool that allows you to analyse your Elm code, identify deficiencies and apply best practices.
  • elm-review - Analyzes whole Elm projects, with a focus on shareable and custom rules written in Elm that add guarantees the Elm compiler doesn't give you.

Erlang

  • dialyzer - The DIALYZER, a DIscrepancy AnaLYZer for ERlang programs. Dialyzer is a static analysis tool that identifies software discrepancies, such as definite type errors, code that has become dead or unreachable because of programming error, and unnecessary tests, in single Erlang modules or entire (sets of) applications. Dialyzer starts its analysis from either debug-compiled BEAM bytecode or from Erlang source code. The file and line number of a discrepancy is reported along with an indication of what the discrepancy is about. Dialyzer bases its analysis on the concept of success typings, which allows for sound warnings (no false positives).
  • elvis - Erlang Style Reviewer.
  • Primitive Erlang Security Tool (PEST) - A tool to do a basic scan of Erlang source code and report any function calls that may cause Erlang source code to be insecure.

F#

Fortran

Go

  • aligncheck - Find inefficiently packed structs.
  • bodyclose - Checks whether HTTP response body is closed.
  • deadcode - Finds unused code.
  • dingo-hunter ⚠️ - Static analyser for finding deadlocks in Go.
  • dogsled - Finds assignments/declarations with too many blank identifiers.
  • dupl ⚠️ - Reports potentially duplicated code.
  • errcheck - Check that error return values are used.
  • errwrap - Wrap and fix Go errors with the new %w verb directive. This tool analyzes fmt.Errorf() calls and reports calls that contain a verb directive that is different than the new %w verb directive introduced in Go v1.13. It's also capable of rewriting calls to use the new %w wrap verb directive.
  • flen - Get info on length of functions in a Go package.
  • Go Meta Linter ⚠️ - Concurrently run Go lint tools and normalise their output. Use golangci-lint for new projects.
  • go tool vet --shadow - Reports variables that may have been unintentionally shadowed.
  • go vet - Examines Go source code and reports suspicious.
  • go-consistent ⚠️ - Analyzer that helps you to make your Go programs more consistent.
  • go-critic - Go source code linter that maintains checks which are currently not implemented in other linters.
  • go/ast - Package ast declares the types used to represent syntax trees for Go packages.
  • gochecknoglobals - Checks that no globals are present.
  • goconst - Finds repeated strings that could be replaced by a constant.
  • gocyclo - Calculate cyclomatic complexities of functions in Go source code.
  • gofmt -s - Checks if the code is properly formatted and could not be further simplified.
  • goimports - Checks missing or unreferenced package imports.
  • gokart - Golang security analysis with a focus on minimizing false positives. It is capable of tracing the source of variables and function arguments to determine whether input sources are safe.
  • GolangCI-Lint - Alternative to Go Meta Linter: GolangCI-Lint is a linters aggregator.
  • golint - Prints out coding style mistakes in Go source code.
  • goreporter - Concurrently runs many linters and normalises their output to a report.
  • goroutine-inspect - An interactive tool to analyze Golang goroutine dump.
  • gosec (gas) - Inspects source code for security problems by scanning the Go AST.
  • gotype - Syntactic and semantic analysis similar to the Go compiler.
  • ineffassign - Detect ineffectual assignments in Go code.
  • interfacer ⚠️ - Suggest narrower interfaces that can be used.
  • lll ⚠️ - Report long lines.
  • maligned - Detect structs that would take less memory if their fields were sorted.
  • misspell - Finds commonly misspelled English words.
  • nakedret - Finds naked returns.
  • nargs - Finds unused arguments in function declarations.
  • prealloc - Finds slice declarations that could potentially be preallocated.
  • Reviewdog - A tool for posting review comments from any linter in any code hosting service.
  • revive - Fast, configurable, extensible, flexible, and beautiful linter for Go. Drop-in replacement of golint.
  • safesql - Static analysis tool for Golang that protects against SQL injections.
  • shisho - A lightweight static code analyzer designed for developers and security teams. It allows you to analyze and transform source code with an intuitive DSL similar to sed, but for code.
  • staticcheck - Go static analysis that specialises in finding bugs, simplifying code and improving performance.
  • structcheck - Find unused struct fields.
  • structslop - Static analyzer for Go that recommends struct field rearrangements to provide for maximum space/allocation efficiency
  • test - Show location of test failures from the stdlib testing module.
  • unconvert ⚠️ - Detect redundant type conversions.
  • unparam - Find unused function parameters.
  • varcheck - Find unused global variables and constants.
  • wsl - Enforces empty lines at the right places.

Groovy

  • CodeNarc - A static analysis tool for Groovy source code, enabling monitoring and enforcement of many coding standards and best practices.

Haskell

  • brittany - Haskell source code formatter
  • HLint - HLint is a tool for suggesting possible improvements to Haskell code.
  • Stan - Stan is a command-line tool for analysing Haskell projects and outputting discovered vulnerabilities in a helpful way with possible solutions for detected problems.
  • Weeder - A tool for detecting dead exports or package imports in Haskell code.

Haxe

  • Haxe Checkstyle - A static analysis tool to help developers write Haxe code that adheres to a coding standard.

Java

  • Checker Framework - Pluggable type-checking for Java.
  • checkstyle - Checking Java source code for adherence to a Code Standard or set of validation rules (best practices).
  • ck - Calculates Chidamber and Kemerer object-oriented metrics by processing the source Java files.
  • ckjm - Calculates Chidamber and Kemerer object-oriented metrics by processing the bytecode of compiled Java files.
  • CogniCrypt ⚠️ - Checks Java source and byte code for incorrect uses of cryptographic APIs.
  • DesigniteJava ©️ - DesigniteJava supports detection of various architecture, design, and implementation smells along with computation of various code quality metrics.
  • Doop - Doop is a declarative framework for static analysis of Java/Android programs, centered on pointer analysis algorithms. Doop provides a large variety of analyses and also the surrounding scaffolding to run an analysis end-to-end (fact generation, processing, statistics, etc.).
  • Error-prone - Catch common Java mistakes as compile-time errors.
  • fb-contrib - A plugin for FindBugs with additional bug detectors.
  • forbidden-apis - Detects and forbids invocations of specific method/class/field (like reading from a text stream without a charset). Maven/Gradle/Ant compatible.
  • google-java-format - Google Style Reformat.
  • HuntBugs ⚠️ - Bytecode static analyzer tool based on Procyon Compiler Tools aimed to supersede FindBugs.
  • IntelliJ IDEA ©️ - Comes bundled with a lot of inspections for Java and Kotlin and includes tools for refactoring, formatting and more.
  • JArchitect ©️ - Measure, query and visualize your code and avoid unexpected issues, technical debt and complexity.
  • JBMC - Bounded model-checker for Java (bytecode), verifies user-defined assertions, standard assertions, several coverage metric analyses.
  • NullAway - Type-based null-pointer checker with low build-time overhead; an Error Prone plugin.
  • OWASP Dependency Check - Checks dependencies for known, publicly disclosed, vulnerabilities.
  • qulice - Combines a few (pre-configured) static analysis tools (checkstyle, PMD, Findbugs, ...).
  • Reshift ©️ - A source code analysis tool for detecting and managing Java security vulnerabilities.
  • Soot - A framework for analyzing and transforming Java and Android applications.
  • Spoon - Spoon is a metaprogramming library to analyze and transform Java source code (incl Java 9, 10, 11, 12, 13, 14). It parses source files to build a well-designed AST with powerful analysis and transformation API. Can be integrated in Maven and Gradle.
  • SpotBugs - SpotBugs is FindBugs' successor. A tool for static analysis to look for bugs in Java code.
  • Violations Lib - Java library for parsing report files from static code analysis. Used by a bunch of Jenkins, Maven and Gradle plugins.

JavaScript

  • aether ⚠️ - Lint, analyze, normalize, transform, sandbox, run, step through, and visualize user JavaScript, in node or the browser.
  • Closure Compiler - A compiler tool to increase efficiency, reduce size, and provide code warnings in JavaScript files.
  • ClosureLinter ⚠️ - Ensures that all of your project's JavaScript code follows the guidelines in the Google JavaScript Style Guide. It can also automatically fix many common errors.
  • complexity-report ⚠️ - Software complexity analysis for JavaScript projects.
  • DeepScan ©️ - An analyzer for JavaScript which targets runtime errors and quality issues rather than coding conventions.
  • es6-plato - Visualize JavaScript (ES6) source complexity.
  • escomplex ⚠️ - Software complexity analysis of JavaScript-family abstract syntax trees.
  • Esprima - ECMAScript parsing infrastructure for multipurpose analysis.
  • flow - A static type checker for JavaScript.
  • hegel - A static type checker for JavaScript with a bias on type inference and strong type systems.
  • jshint ℹ️ - Detect errors and potential problems in JavaScript code and enforce your team's coding conventions.
  • JSLint ℹ️ - The JavaScript Code Quality Tool.
  • JSPrime ⚠️ - Static security analysis tool.
  • NodeJSScan - A static security code scanner for Node.js applications powered by libsast and semgrep that builds on the njsscan cli tool. It features a UI with various dashboards about an application's security status.
  • plato ⚠️ - Visualize JavaScript source complexity.
  • Polymer-analyzer - A static analysis framework for Web Components.
  • retire.js - Scanner detecting the use of JavaScript libraries with known vulnerabilities.
  • RSLint - A (WIP) JavaScript linter written in Rust designed to be as fast as possible, customizable, and easy to use.
  • standard - An npm module that checks for Javascript Styleguide issues.
  • tern - A JavaScript code analyzer for deep, cross-editor language support.
  • TypL - With TypL, you just write completely standard JS, and the tool figures out your types via powerful inferencing.
  • xo - Opinionated but configurable ESLint wrapper with lots of goodies included. Enforces strict and readable code.
  • yardstick ⚠️ - Javascript code metrics.

Julia

Kotlin

  • detekt - Static code analysis for Kotlin code.
  • diktat - Strict coding standard for Kotlin and a linter that detects and auto-fixes code smells.
  • ktlint - An anti-bikeshedding Kotlin linter with built-in formatter.

Lua

  • luacheck ⚠️ - A tool for linting and static analysis of Lua code.
  • lualint - lualint performs luac-based static analysis of global variable usage in Lua source code.
  • Luanalysis - An IDE for statically typed Lua development.

MATLAB

  • mlint ©️ - Check MATLAB code files for possible problems.

Nim

  • DrNim - DrNim combines the Nim frontend with the Z3 proof engine in order to allow verify / validate software written in Nim.
  • nimfmt - Nim code formatter / linter / style checker

Ocaml

  • Sys ⚠️ - A static/symbolic Tool for finding bugs in (browser) code. It uses the LLVM AST to find bugs like uninitialized memory access.
  • VeriFast - A tool for modular formal verification of correctness properties of single-threaded and multithreaded C and Java programs annotated with preconditions and postconditions written in separation logic. To express rich specifications, the programmer can define inductive datatypes, primitive recursive pure functions over these datatypes, and abstract separation logic predicates.

PHP

  • churn-php - Helps discover good candidates for refactoring.
  • dephpend - Dependency analysis tool.
  • deprecation-detector - Finds usages of deprecated (Symfony) code.
  • deptrac - Enforce rules for dependencies between software layers.
  • DesignPatternDetector - Detection of design patterns in PHP code.
  • EasyCodingStandard - Combine PHP_CodeSniffer and PHP-CS-Fixer.
  • Enlightn - A static and dynamic analysis tool for Laravel applications that provides recommendations to improve the performance, security and code reliability of Laravel apps. Contains 120 automated checks.
  • exakat - An automated code reviewing engine for PHP.
  • GrumPHP - Checks code on every commit.
  • larastan - Adds static analysis to Laravel improving developer productivity and code quality. It is a wrapper around PHPStan.
  • Mondrian ⚠️ - A set of static analysis and refactoring tools which use graph theory.
  • Nitpick CI ©️ - Automated PHP code review.
  • parallel-lint - This tool checks syntax of PHP files faster than serial check with a fancier output.
  • Parse - A Static Security Scanner.
  • pdepend - Calculates software metrics like cyclomatic complexity for PHP code.
  • phan - A modern static analyzer from etsy.
  • PHP Architecture Tester - Easy to use architecture testing tool for PHP.
  • PHP Assumptions ⚠️ - Checks for weak assumptions.
  • PHP Coding Standards Fixer - Fixes your code according to standards like PSR-1, PSR-2, and the Symfony standard.
  • PHP Insights - Instant PHP quality checks from your console. Analysis of code quality and coding style as well as overview of code architecture and its complexity.
  • Php Inspections (EA Extended) - A Static Code Analyzer for PHP.
  • PHP Refactoring Browser - Refactoring helper.
  • PHP Semantic Versioning Checker - Suggests a next version according to semantic versioning.
  • PHP-Parser - A PHP parser written in PHP.
  • php-speller - PHP spell check library.
  • PHP-Token-Reflection ⚠️ - Library emulating the PHP internal reflection.
  • php7cc ⚠️ - PHP 7 Compatibility Checker.
  • php7mar ⚠️ - Assist developers in porting their code quickly to PHP 7.
  • PHP_CodeSniffer - Detects violations of a defined set of coding standards.
  • phpca ⚠️ - Finds usage of non-built-in extensions.
  • phpcpd - Copy/Paste Detector for PHP code.
  • phpdcd ⚠️ - Dead Code Detector (DCD) for PHP code.
  • PhpDependencyAnalysis ⚠️ - Builds a dependency graph for a project.
  • PhpDeprecationDetector - Analyzer of PHP code to search issues with deprecated functionality in newer interpreter versions. It finds removed objects (functions, variables, constants and ini-directives), deprecated functions functionality, and usage of forbidden names or tricks (e.g. reserved identifiers in newer versions).
  • phpdoc-to-typehint ⚠️ - Add scalar type hints and return types to existing PHP projects using PHPDoc annotations.
  • phpDocumentor - Analyzes PHP source code to generate documentation.
  • phploc - A tool for quickly measuring the size and analyzing the structure of a PHP project.
  • PHPMD - Finds possible bugs in your code.
  • PhpMetrics - Calculates and visualizes various code quality metrics.
  • phpmnd - Helps to detect magic numbers.
  • PHPQA - A tool for running QA tools (phploc, phpcpd, phpcs, pdepend, phpmd, phpmetrics).
  • phpqa - jakzal - Many tools for PHP static analysis in one container.
  • phpqa - jmolivas - PHPQA all-in-one Analyzer CLI tool.
  • phpsa ⚠️ - Static analysis tool for PHP.
  • PHPStan - PHP Static Analysis Tool - discover bugs in your code without running it!
  • Progpilot - A static analysis tool for security purposes.
  • Psalm - Static analysis tool for finding type errors in PHP applications.
  • Qafoo Quality Analyzer ⚠️ - Visualizes metrics and source code.
  • Symfony Insight ©️ - Detect security risks, find bugs and provide actionable metrics for PHP projects.
  • Tuli - A static analysis engine.
  • twig-lint - twig-lint is a lint tool for your twig files.
  • WAP - Tool to detect and correct input validation vulnerabilities in PHP (4.0 or higher) web applications and predicts false positives by combining static analysis and data mining.

PL/SQL

  • ZPA - Z PL/SQL Analyzer (ZPA) is an extensible code analyzer for PL/SQL and Oracle SQL. It can be integrated with SonarQube.

Perl

  • Perl::Critic - Critique Perl source code for best-practices.

Python

  • bandit - A tool to find common security issues in Python code.
  • bellybutton - A linting engine supporting custom project-specific rules.
  • Black - The uncompromising Python code formatter.
  • Bowler - Safe code refactoring for modern Python. Bowler is a refactoring tool for manipulating Python at the syntax tree level. It enables safe, large scale code modifications while guaranteeing that the resulting code compiles and runs. It provides both a simple command line interface and a fluent API in Python for generating complex code modifications in code.
  • ciocheck ⚠️ - Linter, formatter and test suite helper. As a linter, it is a wrapper around pep8, pydocstyle, flake8, and pylint.
  • cohesion ⚠️ - A tool for measuring Python class cohesion.
  • Dlint - A tool for ensuring Python code is secure.
  • fixit - A framework for creating lint rules and corresponding auto-fixes for source code.
  • flake8 - A wrapper around pyflakes, pycodestyle and mccabe.
  • InspectorTiger ⚠️ - IT, Inspector Tiger, is a modern python code review tool / framework. It comes with bunch of pre-defined handlers which warns you about improvements and possible bugs. Beside these handlers, you can write your own or use community ones.
  • jedi - Autocompletion/static analysis library for Python.
  • linty fresh - Parse lint errors and report them to Github as comments on a pull request.
  • mccabe - Check McCabe complexity.
  • multilint ⚠️ - A wrapper around flake8, isort and modernize.
  • mypy - A static type checker that aims to combine the benefits of duck typing and static typing, frequently used with MonkeyType.
  • prospector - A wrapper around pylint, pep8, mccabe and others.
  • py-find-injection ⚠️ - Find SQL injection vulnerabilities in Python code.
  • PyCodeQual ©️ - PyCodeQual gives you insights into complexity and bug risks. It adds automatic reviews to your pull requests.
  • pycodestyle - (Formerly pep8) Check Python code against some of the style conventions in PEP 8.
  • pydocstyle - Check compliance with Python docstring conventions.
  • pyflakes - Check Python source files for errors.
  • pylint - Looks for programming errors, helps enforcing a coding standard and sniffs for some code smells. It additionally includes pyreverse (an UML diagram generator) and symilar (a similarities checker).
  • pyre-check - A fast, scalable type checker for large Python codebases.
  • pyright - Static type checker for Python, created to address gaps in existing tools like mypy.
  • pyroma - Rate how well a Python project complies with the best practices of the Python packaging ecosystem, and list issues that could be improved.
  • Pysa - A tool based on Facebook's pyre-check to identify potential security issues in Python code identified with taint analysis.
  • PyT - Python Taint ⚠️ - A static analysis tool for detecting security vulnerabilities in Python web applications.
  • pytype - A static type analyzer for Python code.
  • QuantifiedCode ⚠️ - Automated code review & repair. It helps you to keep track of issues and metrics in your software projects, and can be easily extended to support new types of analyses.
  • radon - A Python tool that computes various metrics from the source code.
  • unimport - A linter, formatter for finding and removing unused import statements.
  • vulture - Find unused classes, functions and variables in Python code.
  • wemake-python-styleguide - The strictest and most opinionated python linter ever.
  • wily - A command-line tool for archiving, exploring and graphing the complexity of Python source code.
  • xenon - Monitor code complexity using radon.

R

  • cyclocomp - Quantifies the cyclomatic complexity of R functions / expressions.
  • goodpractice - Analyses the source code for R packages and provides best-practice recommendations.
  • lintr - Static Code Analysis for R.
  • styler - Formatting of R source code files and pretty-printing of R code.

Ruby

  • brakeman - A static analysis security vulnerability scanner for Ruby on Rails applications.
  • bundler-audit - Audit Gemfile.lock for gems with security vulnerabilities reported in Ruby Advisory Database.
  • cane ⚠️ - Code quality threshold checking as part of your build.
  • dawnscanner - A static analysis security scanner for ruby written web applications. It supports Sinatra, Padrino and Ruby on Rails frameworks.
  • ERB Lint - Lint your ERB or HTML files
  • Fasterer - Common Ruby idioms checker.
  • flay - Flay analyzes code for structural similarities.
  • flog - Flog reports the most tortured code in an easy to read pain report. The higher the score, the more pain the code is in.
  • Fukuzatsu - A tool for measuring code complexity in Ruby class files. Its analysis generates scores based on cyclomatic complexity algorithms with no added "opinions".
  • laser ⚠️ - Static analysis and style linter for Ruby code.
  • pelusa - Static analysis Lint-type tool to improve your OO Ruby code.
  • quality - Runs quality checks on your code using community tools, and makes sure your numbers don't get any worse over time.
  • Querly - Pattern Based Checking Tool for Ruby.
  • Railroader ⚠️ - An open source static analysis security vulnerability scanner for Ruby on Rails applications.
  • rails_best_practices - A code metric tool for Rails projects
  • reek - Code smell detector for Ruby.
  • RuboCop - A Ruby static code analyzer, based on the community Ruby style guide.
  • Rubrowser - Ruby classes interactive dependency graph generator.
  • ruby-lint ⚠️ - Static code analysis for Ruby.
  • rubycritic - A Ruby code quality reporter.
  • rufo - An opinionated ruby formatter, intended to be used via the command line as a text-editor plugin, to autoformat files on save or on demand.
  • Saikuro ⚠️ - A Ruby cyclomatic complexity analyzer.
  • SandiMeter ⚠️ - Static analysis tool for checking Ruby code for Sandi Metz' rules.
  • Sorbet - A fast, powerful type checker designed for Ruby.
  • Standard Ruby - Ruby Style Guide, with linter & automatic code fixer
  • Steep - Gradual Typing for Ruby.

Rust

  • C2Rust - C2Rust helps you migrate C99-compliant code to Rust. The translator (or transpiler) produces unsafe Rust code that closely mirrors the input C code.
  • cargo udeps - Find unused dependencies in Cargo.toml. It either prints out a "unused crates" line listing the crates, or it prints out a line saying that no crates were unused.
  • cargo-audit - Audit Cargo.lock for crates with security vulnerabilities reported to the RustSec Advisory Database.
  • cargo-bloat - Find out what takes most of the space in your executable. supports ELF (Linux, BSD), Mach-O (macOS) and PE (Windows) binaries.
  • cargo-deny - A cargo plugin for linting your dependencies. It can be used either as a command line too, a Rust crate, or a Github action for CI. It checks for valid license information, duplicate crates, security vulnerabilities, and more.
  • cargo-expand - Cargo subcommand to show result of macro expansion and #[derive] expansion applied to the current crate. This is a wrapper around a more verbose compiler command.
  • cargo-inspect - Inspect Rust code without syntactic sugar to see what the compiler does behind the curtains.
  • cargo-spellcheck - Checks all your documentation for spelling and grammar mistakes with hunspell (ready) and languagetool (preview)
  • clippy - A code linter to catch common mistakes and improve your Rust code.
  • dylint - A tool for running Rust lints from dynamic libraries. Dylint makes it easy for developers to maintain their own personal lint collections.
  • electrolysis ⚠️ - A tool for formally verifying Rust programs by transpiling them into definitions in the Lean theorem prover.
  • herbie ⚠️ - Adds warnings or errors to your crate when using a numerically unstable floating point expression.
  • linter-rust ⚠️ - Linting your Rust-files in Atom, using rustc and cargo.
  • MIRAI - And abstract interpreter operating on Rust's mid-level intermediate language, and providing warnings based on taint analysis.
  • prae - Provides a convenient macro that allows you to generate type wrappers that promise to always uphold arbitrary invariants that you specified.
  • Prusti - A static verifier for Rust, based on the Viper verification infrastructure. By default Prusti verifies absence of panics by proving that statements such as unreachable!() and panic!() are unreachable.
  • Rudra ©️ - Rust Memory Safety & Undefined Behavior Detection. It is capable of analyzing single Rust packages as well as all the packages on crates.io.
  • Rust Language Server - Supports functionality such as 'goto definition', symbol search, reformatting, and code completion, and enables renaming and refactorings.
  • rust-analyzer - Supports functionality such as 'goto definition', type inference, symbol search, reformatting, and code completion, and enables renaming and refactorings.
  • rust-audit - Audit Rust binaries for known bugs or security vulnerabilities. This works by embedding data about the dependency tree (Cargo.lock) in JSON format into a dedicated linker section of the compiled executable.
  • rustfix - Read and apply the suggestions made by rustc (and third-party lints, like those offered by clippy).
  • rustfmt ⚠️ - A tool for formatting Rust code according to style guidelines.
  • RustViz - RustViz is a tool that generates visualizations from simple Rust programs to assist users in better understanding the Rust Lifetime and Borrowing mechanism. It generates SVG files with graphical indicators that integrate with mdbook to render visualizations of data-flow in Rust programs.
  • warnalyzer - Show unused code from multi-crate Rust projects

SQL

  • dbcritic - dbcritic finds problems in a database schema, such as a missing primary key constraint in a table.
  • sqlcheck - Automatically identify anti-patterns in SQL queries.
  • SQLFluff - Multiple dialect SQL linter and formatter.
  • sqlint - Simple SQL linter.
  • squawk - Linter for PostgreSQL, focused on migrations. Prevents unexpected downtime caused by database migrations and encourages best practices around Postgres schemas and SQL.
  • tsqllint - T-SQL-specific linter.
  • TSqlRules ⚠️ - TSQL Static Code Analysis Rules for SQL Server.
  • Visual Expert ©️ - Code analysis for PowerBuilder, Oracle, and SQL Server Explores, analyzes, and documents Code

Scala

  • linter ⚠️ - Linter is a Scala static analysis compiler plugin which adds compile-time checks for various possible bugs, inefficiencies, and style problems.
  • Scalastyle - Scalastyle examines your Scala code and indicates potential problems with it.
  • scapegoat - Scala compiler plugin for static code analysis.
  • WartRemover - A flexible Scala code linting tool.

Shell

  • bashate - Code style enforcement for bash programs. The output format aims to follow pycodestyle (pep8) default output format.
  • i-Code CNES for Shell ⚠️ - An open source static code analysis tool for Shell and Fortran (77 and 90).
  • kmdr - CLI tool for learning commands from your terminal. kmdr delivers a break down of commands with every attribute explained.
  • sh - A shell parser, formatter, and interpreter with bash support; includes shfmt
  • shellcheck - ShellCheck, a static analysis tool that gives warnings and suggestions for bash/sh shell scripts.
  • shellharden - A syntax highlighter and a tool to semi-automate the rewriting of scripts to ShellCheck conformance, mainly focused on quoting.

Swift

  • SwiftFormat - A library and command-line formatting tool for reformatting Swift code.
  • SwiftLint - A tool to enforce Swift style and conventions.
  • Tailor ⚠️ - A static analysis and lint tool for source code written in Apple's Swift programming language.

Tcl

  • Frink - A Tcl formatting and static check program (can prettify the program, minimise, obfuscate or just sanity check it).
  • Nagelfar - A static syntax checker for Tcl.
  • tclchecker - A static syntax analysis module (as part of TDK).

TypeScript

  • Angular ESLint - Linter for Angular projects
  • Codelyzer - A set of tslint rules for static code analysis of Angular 2 TypeScript projects.
  • tslint-clean-code - A set of TSLint rules inspired by the Clean Code handbook.
  • tslint-microsoft-contrib ⚠️ - A set of tslint rules for static code analysis of TypeScript projects maintained by Microsoft.
  • TypeScript Call Graph - CLI to generate an interactive graph of functions and calls from your TypeScript files
  • TypeScript ESLint - TypeScript language extension for eslint.

VBScript

  • Test Design Studio ©️ - A full IDE with static code analysis for Micro Focus Unified Functional Testing VBScript-based automated tests.

Verilog/SystemVerilog

  • Icarus Verilog - A Verilog simulation and synthesis tool that operates by compiling source code written in IEEE-1364 Verilog into some target format
  • svls - A Language Server Protocol implementation for Verilog and SystemVerilog, including lint capabilities.
  • verible-linter-action - Automatic SystemVerilog linting in github actions with the help of Verible Used to lint Verilog and SystemVerilog source files and comment erroneous lines of code in Pull Requests automatically.
  • Verilator - A tool which converts Verilog to a cycle-accurate behavioral model in C++ or SystemC. Performs lint code-quality checks.
  • vscode-verilog-hdl-support - Verilog HDL/SystemVerilog/Bluespec SystemVerilog support for VS Code. Provides syntax highlighting and Linting support from Icarus Verilog, Vivado Logical Simulation, Modelsim and Verilator

Vim Script

  • vint ⚠️ - Fast and Highly Extensible Vim script Language Lint implemented by Python.

Multiple languages

  • ale - Asynchronous Lint Engine for Vim and NeoVim with support for many languages.

  • Android Studio - Based on IntelliJ IDEA, and comes bundled with tools for Android including Android Lint.

  • AppChecker ©️ - Static analysis for C/C++/C#, PHP and Java.

  • Application Inspector ©️ - Commercial Static Code Analysis which generates exploits to verify vulnerabilities.

  • ApplicationInspector - Creates reports of over 400 rule patterns for feature detection (e.g. the use of cryptography or version control in apps).

  • APPscreener ©️ - Static code analysis for binary and source code - Java/Scala, PHP, Javascript, C#, PL/SQL, Python, T-SQL, C/C++, ObjectiveC/Swift, Visual Basic 6.0, Ruby, Delphi, ABAP, HTML5 and Solidity.

  • ArchUnit - Unit test your Java or Kotlin architecture.

  • Atom-Beautify ⚠️ - Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, Coldfusion, SQL, and more in Atom editor.

  • Axivion Bauhaus Suite ©️ - Tracks down error-prone code locations, style violations, cloned or dead code, cyclic dependencies and more for C/C++, C#/.NET, Java and Ada 83/Ada 95.

  • Better Code Hub ©️ - Better Code Hub checks your GitHub codebase against 10 engineering guidelines devised by the authority in software quality, Software Improvement Group.

  • CAST Highlight ©️ - Commercial Static Code Analysis which runs locally, but uploads the results to its cloud for presentation.

  • Checkmarx CxSAST ©️ - Commercial Static Code Analysis which doesn't require pre-compilation.

  • ClassGraph - A classpath and module path scanner for querying or visualizing class metadata or class relatedness.

  • Clayton ©️ - AI-powered code reviews for Salesforce. Secure your developments, enforce best practice and control your technical debt in real-time.

  • coala - Language independent framework for creating code analysis - supports over 60 languages by default.

  • Cobra ©️ - Structural source code analyzer by NASA's Jet Propulsion Laboratory.

  • Codacy ©️ - Code Analysis to ship Better Code, Faster.

  • Code Intelligence ©️ - CI/CD-agnostic DevSecOps platform which combines industry-leading fuzzing engines for finding bugs and visualizing code coverage

  • Codeac ©️ - Automated code review tool integrates with GitHub, Bitbucket and GitLab (even self-hosted). Available for JavaScript, TypeScript, Python, Ruby, Go, PHP, Java, Docker, and more. (open-source free)

  • codeburner ⚠️ - Provides a unified interface to sort and act on the issues it finds.

  • codechecker - A defect database and viewer extension for the Clang Static Analyzer with web GUI.

  • CodeFactor ©️ - Automated Code Analysis for repos on GitHub or BitBucket.

  • CodeFlow ©️ - Automated code analysis tool to deal with technical depth. Integrates with Bitbucket and Gitlab. (free for Open Source Projects)

  • CodeIt.Right ©️ - CodeIt.Right™ provides a fast, automated way to ensure that your source code adheres to (your) predefined design and style guidelines as well as best coding practices.

  • CodePatrol ©️ - Automated SAST code reviews driven by security, supports 15+ languages and includes security training.

  • codeql - Deep code analysis - semantic queries and dataflow for several languages with VSCode plugin support.

  • Coderrect ©️ - Advanced static analyzer for multi-threaded software. Supports OpenMP, Pthreads, std::thread, and GPU/CUDA.

  • CodeRush ©️ - Code creation, debugging, navigation, refactoring, analysis and visualization tools that use the Roslyn engine in Visual Studio 2015 and up.

  • CodeScan ©️ - Code Quality and Security for Salesforce Developers. Made exclusively for the Salesforce platform, CodeScan’s code analysis solutions provide you with total visibility into your code health.

  • CodeScene ©️ - CodeScene is a quality visualization tool for software. Prioritize technical debt, detect delivery risks, and measure organizational aspects. Fully automated.

  • CodeSonar from GrammaTech ©️ - Advanced, whole program, deep path, static analysis of C, C++, Java and C# with easy-to-understand explanations and code and path visualization.

  • Codiga ©️ - Automated Code Reviews and Technical Debt management platform that supports 12+ languages.

  • Corrode ⚠️ - Semi-automatic translation from C to Rust. Could reveal bugs in the original implementation by showing Rust compiler warnings and errors. Superseded by C2Rust.

  • Coverity ©️ - Synopsys Coverity supports 20 languages and over 70 frameworks including Ruby on rails, Scala, PHP, Python, JavaScript, TypeScript, Java, Fortran, C, C++, C#, VB.NET.

  • cqc ⚠️ - Check your code quality for js, jsx, vue, css, less, scss, sass and styl files.

  • DeepCode ©️ - DeepCode finds bugs, security vulnerabilities, performance and API issues based on AI. DeepCode's speed of analysis allow us to analyse your code in real time and deliver results when you hit the save button in your IDE. Supported languages are Java, C/C++, JavaScript, Python, and TypeScript. Integrations with GitHub, BitBucket and Gitlab.

  • DeepSource ©️ - In-depth static analysis to find issues in verticals of bug risks, security, anti-patterns, performance, documentation and style. Native integrations with GitHub, GitLab and Bitbucket. Less than 5% false positives.

  • Depends - Analyses the comprehensive dependencies of code elements for Java, C/C++, Ruby.

  • DevSkim - Regex-based static analysis tool for Visual Studio, VS Code, and Sublime Text - C/C++, C#, PHP, ASP, Python, Ruby, Java, and others.

  • Embold ©️ - Intelligent software analytics platform that identifies design issues, code issues, duplication and metrics. Supports Java, C, C++, C#, JavaScript, TypeScript, Python, Go, Kotlin and more.

  • ESLint - An extensible linter for JS, following the ECMAScript standard.

  • Find Security Bugs - The SpotBugs plugin for security audits of Java web applications and Android applications. (Also work with Kotlin, Groovy and Scala projects)

  • Fortify ©️ - A commercial static analysis platform that supports the scanning of C/C++, C#, VB.NET, VB6, ABAP/BSP, ActionScript, Apex, ASP.NET, Classic ASP, VB Script, Cobol, ColdFusion, HTML, Java, JS, JSP, MXML/Flex, Objective-C, PHP, PL/SQL, T-SQL, Python (2.6, 2.7), Ruby (1.9.3), Swift, Scala, VB, and XML.

  • Goodcheck - Regexp based customizable linter.

  • goone - Finds N+1 queries (SQL calls in a for loop) in go code

  • graudit - Grep rough audit - source code auditing tool.

  • HCL AppScan Source ©️ - Commercial Static Code Analysis.

  • Hopper ⚠️ - A static analysis tool written in scala for languages that run on JVM.

  • Hound CI - Comments on style violations in GitHub pull requests. Supports Coffeescript, Go, HAML, JavaScript, Ruby, SCSS and Swift.

  • imhotep - Comment on commits coming into your repository and check for syntactic errors and general lint warnings.

  • include-gardener ⚠️ - A multi-language static analyzer for C/C++/Obj-C/Python/Ruby to create a graph (in dot or graphml format) which shows all #include relations of a given set of files.

  • Infer - A static analyzer for Java, C and Objective-C

  • InsiderSec - A open source Static Application Security Testing tool (SAST) written in GoLang for Java (Maven and Android), Kotlin (Android), Swift (iOS), .NET Full Framework, C# and Javascript (Node.js).

  • Kiuwan ©️ - Identify and remediate cyber threats in a blazingly fast, collaborative environment, with seamless integration in your SDLC. Python, C\C++, Java, C#, PHP and more.

  • Klocwork ©️ - Quality and Security Static analysis for C/C++, Java and C#.

  • LGTM.com ©️ - Deep code analysis for GitHub and Bitbucket to find security vulnerabilities and critical code quality issues (using Semmle QL). Automatic code review for pull requests; free for public repositories.

  • lizard - Lizard is an extensible Cyclomatic Complexity Analyzer for many programming languages including C/C++ (doesn't require all the header files or Java imports). It also does copy-paste detection (code clone detection/code duplicate detection) and many other forms of static code analysis. Counts lines of code without comments, CCN (cyclomatic complexity number), token count of functions, parameter count of functions.

  • Mega-Linter - Mega-Linter can handle any type of project thanks to its 70+ embedded Linters, its advanced reporting, runnable on any CI system or locally, with assisted installation and configuration, able to apply formatting and fixes

  • oclint - A static source code analysis tool to improve quality and reduce defects for C, C++ and Objective-C.

  • ocular ©️ - Enables code auditors and security teams to interactively investigate their unique code bases to find business logic flaws and technical vulnerabilities that traditional SASTs cannot. This is done by enabling the analyst to write their own custom queries. Can find hard-coded secrets, authentication issues, and malicious code like rootkits and backdoors.

  • Offensive 360 ©️ - Commercial Static Code Analysis system doesn't require building the source code or pre-compilation.

  • parasoft ©️ - Automated Software Testing Solutions for unit-, API-, and web UI testing. Complies with MISRA, OWASP, and others.

  • pfff - Facebook's tools for code analysis, visualizations, or style-preserving source transformation for many languages.

  • PMD - A source code analyzer for Java, Salesforce Apex, Javascript, PLSQL, XML, XSL and others.

  • pre-commit - A framework for managing and maintaining multi-language pre-commit hooks.

  • Prettier - An opinionated code formatter.

  • Pronto - Quick automated code review of your changes. Supports more than 40 runners for various languages, including Clang, Elixir, JavaScript, PHP, Ruby and more.

  • PT.PM ⚠️ - An engine for searching patterns in the source code, based on Unified AST or UST. At present time C#, Java, PHP, PL/SQL, T-SQL, and JavaScript are supported. Patterns can be described within the code or using a DSL.

  • PVS-Studio ©️ - A (conditionally free for FOSS and individual developers) static analysis of C, C++, C# and Java code. For advertising purposes you can propose a large FOSS project for analysis by PVS employees. Supports CWE mapping, MISRA and CERT coding standards.

  • pylama - Code audit tool for Python and JavaScript. Wraps pycodestyle, pydocstyle, PyFlakes, Mccabe, Pylint, and more

  • Refactoring Essentials ⚠️ - The free Visual Studio 2015 extension for C# and VB.NET refactorings, including code best practice analyzers.

  • relint - A static file linter that allows you to write custom rules using regular expressions (RegEx).

  • ReSharper ©️ - Extends Visual Studio with on-the-fly code inspections for C#, VB.NET, ASP.NET, JavaScript, TypeScript and other technologies.

  • RIPS ©️ - A static source code analyser for vulnerabilities in PHP scripts.

  • Rome - Rome is a linter, compiler, bundler, and more for JavaScript, TypeScript, JSON, HTML, Markdown, and CSS.

  • Roslyn Analyzers - Roslyn-based implementation of FxCop analyzers.

  • Roslyn Security Guard - Project that focuses on the identification of potential vulnerabilities such as SQL injection, cross-site scripting (XSS), CSRF, cryptography weaknesses, hardcoded passwords and many more.

  • Scrutinizer ©️ - A proprietary code quality checker that can be integrated with GitHub.

  • Security Code Scan - Security code analyzer for C# and VB.NET. Detects various security vulnerability patterns: SQLi, XSS, CSRF, XXE, Open Redirect, etc. Integrates into Visual Studio 2015 and newer. Detects various security vulnerability patterns: SQLi, XSS, CSRF, XXE, Open Redirect, etc.

  • Semgrep - A fast, open-source, static analysis tool for finding bugs and enforcing code standards at editor, commit, and CI time. Its rules look like the code you already write; no abstract syntax trees or regex wrestling. Supports 17+ languages.

  • Semmle QL and LGTM ©️ - Find security vulnerabilities, variants, and critical code quality issues using queries over source code. Automatic PR code review; free for public GitHub/Bitbucket repo: LGTM.com.

  • ShiftLeft ©️ - Identify vulnerabilities that are unique to your code base before they reach production. Leverages the Code Property Graph (CPG) to run its analyses concurrently in a single graph of graphs. Automatically finds business logic flaws in dev like hardcoded secrets and logic bombs

  • ShiftLeft Scan - Scan is a free open-source DevSecOps platform for detecting security issues in source code and dependencies. It supports a broad range of languages and CI/CD pipelines.

  • shipshape ⚠️ - Static program analysis platform that allows custom analyzers to plug in through a common interface.

  • Sider ©️ - An automated code reviewing tool. Improving developers' productivity.

  • Similarity Tester - A tool that finds similarities between or within files to support you encountering DRY principle violations.

  • Snyk ©️ - Vulnerability scanner for dependencies of node.js apps (free for Open Source Projects).

  • SonarCloud ©️ - Multi-language cloud-based static code analysis. History, trends, security hot-spots, pull request analysis and more. Free for open source.

  • SonarLint for Visual Studio - SonarLint is an extension for Visual Studio 2015 and 2017 that provides on-the-fly feedback to developers on new bugs and quality issues injected into .NET code.

  • SonarQube - SonarQube is an open platform to manage code quality.

  • Sonatype ©️ - Reports known vulnerabilities in common dependencies and recommends updated packages to minimize breaking changes

  • Soto Platform ©️ - Suite of static analysis tools consisting of the three components Sotoarc (Architecture Analysis), Sotograph (Quality Analysis), and Sotoreport (Quality report). Helps find differences between architecture and implementation, interface violations (e.g. external access of private parts of subsystems, detection of all classes, files, packages and subsystems which are strongly coupled by cyclical relationships and more. The Sotograph product family runs on Windows and Linux.

  • SourceMeter ©️ - Static Code Analysis for C/C++, Java, C#, Python, and RPG III and RPG IV versions (including free-form).

  • Super-Linter - Combination of multiple linters to install as a GitHub Action.

  • Synopsys ©️ - A commercial static analysis platform that allows for scanning of multiple languages (C/C++, Android, C#, Java, JS, PHP, Python, Node.JS, Ruby, Fortran, and Swift).

  • Teamscale ©️ - Static and dynamic analysis tool supporting more than 25 languages and direct IDE integration. Free hosting for Open Source projects available on request. Free academic licenses available.

  • todocheck - Linter for integrating annotated TODOs with your issue trackers

  • trivy - A Simple and Comprehensive Vulnerability Scanner for Containers and other Artifacts, Suitable for CI. Trivy detects vulnerabilities of OS packages (Alpine, RHEL, CentOS, etc.) and application dependencies (Bundler, Composer, npm, yarn, etc.). Checks containers and filesystems.

  • trunk ©️ - Modern repositories include many technologies, each with its own set of linters. With 30+ linters and counting, Trunk makes it dead-simple to identify, install, configure, and run the right linters, static analyzers, and formatters for all your repos.

  • TscanCode - A fast and accurate static analysis solution for C/C++, C#, Lua codes provided by Tencent. Using GPLv3 license.

  • Undebt - Language-independent tool for massive, automatic, programmable refactoring based on simple pattern definitions.

  • Understand ©️ - Code visualization tool that provides code analysis, standards testing, metrics, graphing, dependency analysis and more for Ada, VHDL, and others.

  • Unibeautify - Universal code beautifier with a GitHub app. Supports HTML, CSS, JavaScript, TypeScript, JSX, Vue, C++, Go, Objective-C, Java, Python, PHP, GraphQL, Markdown, and more.

  • Upsource ©️ - Code review tool with static code analysis and code-aware navigation for Java, PHP, JavaScript and Kotlin.

  • Veracode ©️ - Find flaws in binaries and bytecode without requiring source. Support all major programming languages: Java, .NET, JavaScript, Swift, Objective-C, C, C++ and more.

  • Viezly ©️ - Code review tool with dependency diagrams. Improve your team's code reviews with better navigation and code analysis

  • WALA - Static analysis capabilities for Java bytecode and related languages and for JavaScript.

  • weggli - A fast and robust semantic search tool for C and C++ codebases. It is designed to help security researchers identify interesting functionality in large codebases.

  • WhiteHat Application Security Platform ©️ - WhiteHat Scout (for Developers) combined with WhiteHat Sentinel Source (for Operations) supporting WhiteHat Top 40 and OWASP Top 10.

  • Wotan - Pluggable TypeScript and JavaScript linter.

  • Xanitizer ©️ - Xanitizer finds security vulnerabilities in web applications. It supports Java, Scala, JavaScript and TypeScript.

  • XCode ©️ - XCode provides a pretty decent UI for Clang's static code analyzer (C/C++, Obj-C).

  • 🐊 Putout - Pluggable and configurable code transformer with built-in eslint, babel plugins support for js, jsx typescript, flow, markdown, yaml and json.

Other

Angular

Ansible

  • kics - Find security vulnerabilities, compliance issues, and infrastructure misconfigurations in your infrastructure-as-code. Supports Terraform, Kubernetes, Docker, AWS CloudFormation and Ansible

Azure Resource Manager

  • AzSK - Secure DevOps kit for Azure (AzSK) provides security IntelliSense, Security Verification Tests (SVTs), CICD scan vulnerabilities, compliance issues, and infrastructure misconfiguration in your infrastructure-as-code. Supports Azure via ARM.

Binaries

  • angr - Binary code analysis tool that also supports symbolic execution.
  • binbloom - Analyzes a raw binary firmware and determines features like endianness or the loading address. The tool is compatible with all architectures. Loading address: binbloom can parse a raw binary firmware and determine its loading address. Endianness: binbloom can use heuristics to determine the endianness of a firmware. UDS Database: binbloom can parse a raw binary firmware and check if it contains an array containing UDS command IDs.
  • BinSkim - A binary static analysis tool that provides security and correctness results for Windows portable executables.
  • Black Duck ©️ - Tool to analyze source code and binaries for reusable code, necessary licenses and potential security aspects.
  • bloaty - Ever wondered what's making your binary big? Bloaty McBloatface will show you a size profile of the binary so you can understand what's taking up space inside. Bloaty performs a deep analysis of the binary. Using custom ELF, DWARF, and Mach-O parsers, Bloaty aims to accurately attribute every byte of the binary to the symbol or compileunit that produced it. It will even disassemble the binary looking for references to anonymous data. F
  • cargo-bloat - Find out what takes most of the space in your executable. supports ELF (Linux, BSD), Mach-O (macOS) and PE (Windows) binaries.
  • cwe_checker - cwe_checker finds vulnerable patterns in binary executables.
  • Ghidra - A software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission
  • IDA Free ©️ - Binary code analysis tool.
  • Jakstab - Jakstab is an Abstract Interpretation-based, integrated disassembly and static analysis framework for designing analyses on executables and recovering reliable control flow graphs.
  • JEB Decompiler ©️ - Decompile and debug binary code. Break down and analyze document files. Android Dalvik, MIPS, ARM, Intel x86, Java, WebAssembly & Ethereum Decompilers.
  • Manalyze - A static analyzer, which checks portable executables for malicious content.
  • mcsema - Framework for lifting x86, amd64, aarch64, sparc32, and sparc64 program binaries to LLVM bitcode. It translates ("lifts") executable binaries from native machine code to LLVM bitcode, which is very useful for performing program analysis methods.
  • Nauz File Detector - Static Linker/Compiler/Tool detector for Windows, Linux and MacOS.
  • Twiggy - Analyzes a binary's call graph to profile code size. The goal is to slim down wasm binary size.
  • VMware chap - chap analyzes un-instrumented ELF core files for leaks, memory growth, and corruption. It is sufficiently reliable that it can be used in automation to catch leaks before they are committed. As an interactive tool, it helps explain memory growth, can identify some forms of corruption, and supplements a debugger by giving the status of various memory locations.
  • zydis - Fast and lightweight x86/x86-64 disassembler library

Build tools

  • checkmake - Linter / Analyzer for Makefiles.
  • portlint - A verifier for FreeBSD and DragonFlyBSD port directories.

CSS/SASS/SCSS

  • CSS Stats - Potentially interesting stats on stylesheets.
  • CSScomb - A coding style formatter for CSS. Supports own configurations to make style sheets beautiful and consistent.
  • CSSLint - Does basic syntax checking and finds problematic patterns or signs of inefficiency.
  • GraphMyCSS.com - CSS Specificity Graph Generator.
  • Nu Html Checker - Helps you catch problems in your HTML/CSS/SVG
  • Parker ⚠️ - Stylesheet analysis tool.
  • PostCSS - A tool for transforming styles with JS plugins. These plugins can lint your CSS, support variables and mixins, transpile future CSS syntax, inline images, and more.
  • Project Wallace CSS Analyzer - Analytics for CSS, part of Project Wallace.
  • sass-lint ⚠️ - A Node-only Sass linter for both sass and scss syntax.
  • scsslint - Linter for SCSS files.
  • Specificity Graph - CSS Specificity Graph Generator.
  • Stylelint - Linter for SCSS/CSS files.

Config Files

  • dotenv-linter - Linting dotenv files like a charm.
  • dotenv-linter (Rust) - Lightning-fast linter for .env files. Written in Rust
  • gixy ⚠️ - A tool to analyze Nginx configuration. The main goal is to prevent misconfiguration and automate flaw detection.

Configuration Management

  • ansible-lint - Checks playbooks for practices and behaviour that could potentially be improved.
  • AWS CloudFormation Guard - Check local CloudFormation templates against policy-as-code rules and generate rules from existing templates.
  • AzSK - Secure DevOps kit for Azure (AzSK) provides security IntelliSense, Security Verification Tests (SVTs), CICD scan vulnerabilities, compliance issues, and infrastructure misconfiguration in your infrastructure-as-code. Supports Azure via ARM.
  • cfn-lint - AWS Labs CloudFormation linter.
  • cfn_nag - A linter for AWS CloudFormation templates.
  • chart-testing - ct is the the tool for testing Helm charts. It is meant to be used for linting and testing pull requests. It automatically detects charts changed against the target branch.
  • checkov - Static analysis tool for Terraform files (tf>=v0.12), preventing cloud misconfigs at build time.
  • clusterlint - Clusterlint queries live Kubernetes clusters for resources, executes common and platform specific checks against these resources and provides actionable feedback to cluster operators. It is a non invasive tool that is run externally. Clusterlint does not alter the resource configurations.
  • cookstyle - Cookstyle is a linting tool based on the RuboCop Ruby linting tool for Chef cookbooks.
  • Datree - A CLI tool to prevent Kubernetes misconfigurations by ensuring that manifests and Helm charts follow best practices as well as your organization’s policies
  • foodcritic - A lint tool that checks Chef cookbooks for common problems.
  • kics - Find security vulnerabilities, compliance issues, and infrastructure misconfigurations in your infrastructure-as-code. Supports Terraform, Kubernetes, Docker, AWS CloudFormation and Ansible
  • kube-lint - A linter for Kubernetes resources with a customizable rule set. You define a list of rules that you would like to validate against your resources and kube-lint will evaluate those rules against them.
  • kube-linter - KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices.
  • kubeval - Validates your Kubernetes configuration files and supports multiple Kubernetes versions.
  • metadata-json-lint - Tool to check the validity of Puppet metadata.json files.
  • Puppet Lint - Check that your Puppet manifests conform to the style guide.
  • terraform-compliance - A lightweight, compliance- and security focused, BDD test framework against Terraform.
  • terrascan - Collection of security and best practice tests for static code analysis of Terraform templates.
  • tflint - A Terraform linter for detecting errors that can not be detected by terraform plan.
  • tfsec - Terraform static analysis tool that prevents potential security issues by checking cloud misconfigurations at build time and directly integrates with the HCL parser for better results. Checks for violations of AWS, Azure and GCP security best practice recommendations.

Containers

  • anchore - Discover, analyze, and certify container images. A service that analyzes Docker images and applies user-defined acceptance policies to allow automated container image validation and certification
  • chart-testing - ct is the the tool for testing Helm charts. It is meant to be used for linting and testing pull requests. It automatically detects charts changed against the target branch.
  • clair - Vulnerability Static Analysis for Containers.
  • clusterlint - Clusterlint queries live Kubernetes clusters for resources, executes common and platform specific checks against these resources and provides actionable feedback to cluster operators. It is a non invasive tool that is run externally. Clusterlint does not alter the resource configurations.
  • collector ⚠️ - Run arbitrary scripts inside containers, and gather useful information.
  • dagda - Perform static analysis of known vulnerabilities in docker images/containers.
  • Datree - A CLI tool to prevent Kubernetes misconfigurations by ensuring that manifests and Helm charts follow best practices as well as your organization’s policies
  • Docker Label Inspector ⚠️ - Lint and validate Dockerfile labels.
  • Haskell Dockerfile Linter - A smarter Dockerfile linter that helps you build best practice Docker images.
  • kics - Find security vulnerabilities, compliance issues, and infrastructure misconfigurations in your infrastructure-as-code. Supports Terraform, Kubernetes, Docker, AWS CloudFormation and Ansible
  • kube-lint - A linter for Kubernetes resources with a customizable rule set. You define a list of rules that you would like to validate against your resources and kube-lint will evaluate those rules against them.
  • kube-linter - KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices.
  • kube-score - Static code analysis of your Kubernetes object definitions.
  • KubeLinter - KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices.
  • kubeval - Validates your Kubernetes configuration files and supports multiple Kubernetes versions.
  • OpenSCAP - Suite of automated audit tools to examine the configuration and known vulnerabilities following the NIST-certified Security Content Automation Protocol (SCAP).
  • Qualys Container Security ©️ - Container native application protection to provide visibility and control of containerized applications.
  • sysdig ©️ - A secure DevOps platform for cloud and container forensics. Built on an open source stack, Sysdig provides Docker image scanning and created Falco, the open standard for runtime threat detection for containers, Kubernetes and cloud.
  • Vuls - Agent-less Linux vulnerability scanner based on information from NVD, OVAL, etc. It has some container image support, although is not a container specific tool.

Continuous Integration

  • actionlint - Static checker for GitHub Actions workflow files. Provides an online version.
  • AzSK - Secure DevOps kit for Azure (AzSK) provides security IntelliSense, Security Verification Tests (SVTs), CICD scan vulnerabilities, compliance issues, and infrastructure misconfiguration in your infrastructure-as-code. Supports Azure via ARM.
  • Code Climate - The open and extensible static analysis platform, for everyone.
  • exakat - An automated code reviewing engine for PHP.
  • Nitpick CI ©️ - Automated PHP code review.
  • PullRequest ©️ - Code review as a service with built-in static analysis. Increase velocity and reduce technical debt through quality code review by expert engineers backed by best-in-class automation.
  • quality - Runs quality checks on your code using community tools, and makes sure your numbers don't get any worse over time.
  • QuantifiedCode ⚠️ - Automated code review & repair. It helps you to keep track of issues and metrics in your software projects, and can be easily extended to support new types of analyses.
  • Reviewdog - A tool for posting review comments from any linter in any code hosting service.
  • Symfony Insight ©️ - Detect security risks, find bugs and provide actionable metrics for PHP projects.
  • Violations Lib - Java library for parsing report files from static code analysis. Used by a bunch of Jenkins, Maven and Gradle plugins.

Deno

Embedded

  • oelint-adv - Linter for bitbake recipes used in open-embedded and YOCTO

Embedded Ruby (a.k.a. ERB, eRuby)

  • ERB Lint - Lint your ERB or HTML files

Gherkin

  • gherkin-lint - A linter for the Gherkin-Syntax written in Javascript.

HTML

  • Angular ESLint - Linter for Angular projects
  • Bootlint - An HTML linter for Bootstrap projects.
  • ERB Lint - Lint your ERB or HTML files
  • grunt-bootlint - A Grunt wrapper for Bootlint, the HTML linter for Bootstrap projects.
  • gulp-bootlint - A gulp wrapper for Bootlint, the HTML linter for Bootstrap projects.
  • HTML Inspector ⚠️ - HTML Inspector is a code quality tool to help you and your team write better markup.
  • HTML Tidy - Corrects and cleans up HTML and XML documents by fixing markup errors and upgrading legacy code to modern standards.
  • HTML-Validate - Offline HTML5 validator.
  • HTMLHint - A Static Code Analysis Tool for HTML.
  • Nu Html Checker - Helps you catch problems in your HTML/CSS/SVG
  • Polymer-analyzer - A static analysis framework for Web Components.

JSON

  • Spectral - A flexible JSON/YAML linter, without of the box support for OpenAPI v2/v3 and AsyncAPI v2.

Kubernetes

  • chart-testing - ct is the the tool for testing Helm charts. It is meant to be used for linting and testing pull requests. It automatically detects charts changed against the target branch.
  • clusterlint - Clusterlint queries live Kubernetes clusters for resources, executes common and platform specific checks against these resources and provides actionable feedback to cluster operators. It is a non invasive tool that is run externally. Clusterlint does not alter the resource configurations.
  • Datree - A CLI tool to prevent Kubernetes misconfigurations by ensuring that manifests and Helm charts follow best practices as well as your organization’s policies
  • kics - Find security vulnerabilities, compliance issues, and infrastructure misconfigurations in your infrastructure-as-code. Supports Terraform, Kubernetes, Docker, AWS CloudFormation and Ansible
  • kube-lint - A linter for Kubernetes resources with a customizable rule set. You define a list of rules that you would like to validate against your resources and kube-lint will evaluate those rules against them.
  • kube-linter - KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices.
  • kubeval - Validates your Kubernetes configuration files and supports multiple Kubernetes versions.

LaTeX

  • ChkTeX - A linter for LaTex which catches some typographic errors LaTeX oversees.
  • lacheck - A tool for finding common mistakes in LaTeX documents.
  • TeXLab - A Language Server Protocol implementation for TeX/LaTeX, including lint capabilities.

Laravel

  • Enlightn - A static and dynamic analysis tool for Laravel applications that provides recommendations to improve the performance, security and code reliability of Laravel apps. Contains 120 automated checks.

Makefiles

  • checkmake - Linter / Analyzer for Makefiles.
  • portlint - A verifier for FreeBSD and DragonFlyBSD port directories.

Markdown

  • markdownlint - Node.js -based style checker and lint tool for Markdown/CommonMark files.
  • mdformat - CommonMark compliant Markdown formatter
  • mdl - A tool to check Markdown files and flag style issues.
  • remark-lint - Pluggable Markdown code style linter written in JavaScript.

Metalinter

  • ciocheck ⚠️ - Linter, formatter and test suite helper. As a linter, it is a wrapper around pep8, pydocstyle, flake8, and pylint.
  • flake8 - A wrapper around pyflakes, pycodestyle and mccabe.
  • Go Meta Linter ⚠️ - Concurrently run Go lint tools and normalise their output. Use golangci-lint for new projects.
  • goreporter - Concurrently runs many linters and normalises their output to a report.
  • multilint ⚠️ - A wrapper around flake8, isort and modernize.
  • prospector - A wrapper around pylint, pep8, mccabe and others.

Mobile

  • Android Lint - Run static analysis on Android projects.
  • android-lint-summary ⚠️ - Combines lint errors of multiple projects into one output, check lint results of multiple sub-projects at once.
  • FlowDroid - Static taint analysis tool for Android applications.
  • iblessing - iblessing is an iOS security exploiting toolkit. It can be used for reverse engineering, binary analysis and vulnerability mining.
  • Oversecured ©️ - Enterprise vulnerability scanner for Android and iOS apps. It allows app owners and developers to secure each new version of a mobile app by integrating Oversecured into the development process.
  • paprika ⚠️ - A toolkit to detect some code smells in analyzed Android applications.
  • qark ⚠️ - Tool to look for several security related Android application vulnerabilities.
  • redex - Redex provides a framework for reading, writing, and analyzing .dex files, and a set of optimization passes that use this framework to improve the bytecode. An APK optimized by Redex should be smaller and faster.

Nix

  • deadnix - Scan Nix files for dead code (unused variable bindings)

Node.js

  • lockfile-lint - Lint an npm or yarn lockfile to analyze and detect security issues
  • njsscan - A static application testing (SAST) tool that can find insecure code patterns in your node.js applications using simple pattern matcher from libsast and syntax-aware semantic code pattern search tool semgrep.
  • NodeJSScan - A static security code scanner for Node.js applications powered by libsast and semgrep that builds on the njsscan cli tool. It features a UI with various dashboards about an application's security status.
  • standard - An npm module that checks for Javascript Styleguide issues.

Packages

  • lintian - Static analysis tool for Debian packages.
  • rpmlint - Tool for checking common errors in rpm packages.

Protocol Buffers

  • protolint - Pluggable linter and fixer to enforce Protocol Buffer style and conventions.

Puppet

Rails

  • dawnscanner - A static analysis security scanner for ruby written web applications. It supports Sinatra, Padrino and Ruby on Rails frameworks.

Security/SAST

  • AzSK - Secure DevOps kit for Azure (AzSK) provides security IntelliSense, Security Verification Tests (SVTs), CICD scan vulnerabilities, compliance issues, and infrastructure misconfiguration in your infrastructure-as-code. Supports Azure via ARM.
  • brakeman - A static analysis security vulnerability scanner for Ruby on Rails applications.
  • Datree - A CLI tool to prevent Kubernetes misconfigurations by ensuring that manifests and Helm charts follow best practices as well as your organization’s policies
  • Enlightn - A static and dynamic analysis tool for Laravel applications that provides recommendations to improve the performance, security and code reliability of Laravel apps. Contains 120 automated checks.
  • Gitleaks - A SAST tool for detecting hardcoded secrets like passwords, api keys, and tokens in git repos.
  • gokart - Golang security analysis with a focus on minimizing false positives. It is capable of tracing the source of variables and function arguments to determine whether input sources are safe.
  • iblessing - iblessing is an iOS security exploiting toolkit. It can be used for reverse engineering, binary analysis and vulnerability mining.
  • kics - Find security vulnerabilities, compliance issues, and infrastructure misconfigurations in your infrastructure-as-code. Supports Terraform, Kubernetes, Docker, AWS CloudFormation and Ansible
  • lockfile-lint - Lint an npm or yarn lockfile to analyze and detect security issues
  • njsscan - A static application testing (SAST) tool that can find insecure code patterns in your node.js applications using simple pattern matcher from libsast and syntax-aware semantic code pattern search tool semgrep.
  • NodeJSScan - A static security code scanner for Node.js applications powered by libsast and semgrep that builds on the njsscan cli tool. It features a UI with various dashboards about an application's security status.
  • Oversecured ©️ - Enterprise vulnerability scanner for Android and iOS apps. It allows app owners and developers to secure each new version of a mobile app by integrating Oversecured into the development process.
  • PT Application Inspector ©️ - Identifies code flaws and detects vulnerabilities to prevent web attacks. Demonstrates remote code execution by presenting possible exploits.
  • Qualys Container Security ©️ - Container native application protection to provide visibility and control of containerized applications.
  • QuantifiedCode ⚠️ - Automated code review & repair. It helps you to keep track of issues and metrics in your software projects, and can be easily extended to support new types of analyses.
  • Reshift ©️ - A source code analysis tool for detecting and managing Java security vulnerabilities.
  • scorecard - Security Scorecards - Security health metrics for Open Source
  • SearchDiggity ©️ - Identifies vulnerabilities in open source code projects hosted on Github, Google Code, MS CodePlex, SourceForge, and more. The tool comes with over 130 default searches that identify SQL injection, cross-site scripting (XSS), insecure remote and local file includes, hard-coded passwords, etc.
  • Symfony Insight ©️ - Detect security risks, find bugs and provide actionable metrics for PHP projects.
  • tfsec - Terraform static analysis tool that prevents potential security issues by checking cloud misconfigurations at build time and directly integrates with the HCL parser for better results. Checks for violations of AWS, Azure and GCP security best practice recommendations.
  • Tsunami Security Scanner - A general purpose network security scanner with an extensible plugin system for detecting high severity RCE-like vulnerabilities with high confidence. Custom detectors for finding vulnerabilities (e.g. open APIs) can be added.

Smart Contracts

  • mythril - A symbolic execution framework with batteries included, can be used to find and exploit vulnerabilities in smart contracts automatically.
  • MythX ©️ - MythX is an easy to use analysis platform which integrates several analysis methods like fuzzing, symbolic execution and static analysis to find vulnerabilities with high precision. It can be integrated with toolchains like Remix or VSCode or called from the command-line.
  • slither - Static analysis framework that runs a suite of vulnerability detectors, prints visual information about contract details, and provides an API to easily write custom analyses.
  • solhint - Solhint is an open source project created by https://protofire.io. Its goal is to provide a linting utility for Solidity code.
  • solium - Solium is a linter to identify and fix style and security issues in Solidity smart contracts.

Support

  • LibVCS4j - A Java library that allows existing tools to analyse the evolution of software systems by providing a common API for different version control systems and issue trackers.
  • Violations Lib - Java library for parsing report files from static code analysis. Used by a bunch of Jenkins, Maven and Gradle plugins.

Template-Languages

  • ember-template-lint - Linter for Ember or Handlebars templates.
  • haml-lint - Tool for writing clean and consistent HAML.
  • slim-lint - Configurable tool for analyzing Slim templates.
  • yamllint - Checks YAML files for syntax validity, key repetition and cosmetic problems such as lines length, trailing spaces, and indentation.

Terraform

  • kics - Find security vulnerabilities, compliance issues, and infrastructure misconfigurations in your infrastructure-as-code. Supports Terraform, Kubernetes, Docker, AWS CloudFormation and Ansible
  • shisho - A lightweight static code analyzer designed for developers and security teams. It allows you to analyze and transform source code with an intuitive DSL similar to sed, but for code.

Translation

  • dennis ⚠️ - A set of utilities for working with PO files to ease development and improve quality.

Vue.js

  • HTML-Validate - Offline HTML5 validator.
  • Vetur - Vue tooling for VS Code, powered by vls (vue language server). Vetur has support for formatting embedded HTML, CSS, SCSS, JS, TypeScript, and more. Vetur only has a "whole document formatter" and cannot format arbitrary ranges.

Webassembly

  • Twiggy - Analyzes a binary's call graph to profile code size. The goal is to slim down wasm binary size.

Writing

  • After the Deadline ⚠️ - Spell, style and grammar checker.
  • alex - Catch insensitive, inconsiderate writing
  • codespell - Check code for common misspellings.
  • languagetool - Style and grammar checker for 25+ languages. It finds many errors that a simple spell checker cannot detect.
  • misspell-fixer - Quick tool for fixing common misspellings, typos in source code.
  • Misspelled Words In Context - A spell-checker that groups possible misspellings and shows them in their contexts.
  • proselint - A linter for English prose with a focus on writing style instead of grammar.
  • vale - A syntax-aware linter for prose built with speed and extensibility in mind.
  • write-good - A linter with a focus on eliminating "weasel words".

YAML

  • Spectral - A flexible JSON/YAML linter, without of the box support for OpenAPI v2/v3 and AsyncAPI v2.
  • yamllint - Checks YAML files for syntax validity, key repetition and cosmetic problems such as lines length, trailing spaces, and indentation.

git

  • commitlint - checks if your commit messages meet the conventional commit format

More Collections

License

CC0

To the extent possible under law, Matthias Endler has waived all copyright and related or neighboring rights to this work. The underlying source code used to format and display that content is licensed under the MIT license.

Title image Designed by Freepik.

Comments
  •  Add ⚠️ for deprecated entry

    Add ⚠️ for deprecated entry

    Hi,

    I think this commit change lots of entry, so I guess I should create a PR instead of push to upstream directly.

    So here is the story, I wrote a python code(still not a rust expert 😂) to iterate through all entry, and use github api to check the date for latest commit. I found that there are 102 github repos that was not updated for more than 6 months(I use 180 days as criteria in my code currently), which meets the criteria of deprecated

    Here is the list:

    Repo: https://github.com/codecombat/aether                                  , latest commit date is: 2018-06-29T14:27:21Z
    Repo: https://github.com/passy/android-lint-summary                         , latest commit date is: 2017-12-09T22:27:14Z
    Repo: https://github.com/Glavin001/atom-beautify                            , latest commit date is: 2019-07-20T22:37:34Z
    Repo: https://github.com/hchasestevens/bellybutton                          , latest commit date is: 2019-12-11T13:34:33Z
    Repo: https://github.com/square/cane                                        , latest commit date is: 2018-01-10T04:36:59Z
    Repo: https://github.com/mrtazz/checkmake                                   , latest commit date is: 2020-02-26T20:51:06Z
    Repo: https://github.com/ContinuumIO/ciocheck                               , latest commit date is: 2017-01-21T23:17:36Z
    Repo: https://github.com/dspinellis/ckjm                                    , latest commit date is: 2019-02-27T06:04:54Z
    Repo: https://github.com/MetricsGrimoire/CMetrics                           , latest commit date is: 2012-07-16T07:37:24Z
    Repo: https://github.com/code-cracker/code-cracker                          , latest commit date is: 2019-11-21T17:41:30Z
    Repo: https://github.com/groupon/codeburner                                 , latest commit date is: 2018-11-08T17:07:34Z
    Repo: https://github.com/clutchski/coffeelint                               , latest commit date is: 2018-02-16T07:32:30Z
    Repo: https://github.com/mschwager/cohesion                                 , latest commit date is: 2019-08-01T08:46:36Z
    Repo: https://github.com/banyanops/collector                                , latest commit date is: 2019-08-23T16:53:50Z
    Repo: https://github.com/xcatliu/cqc                                        , latest commit date is: 2017-12-05T04:05:38Z
    Repo: https://github.com/DustinCampbell/CSharpEssentials                    , latest commit date is: 2015-09-04T22:11:42Z
    Repo: https://github.com/cssstats/cssstats                                  , latest commit date is: 2020-02-18T20:27:33Z
    Repo: https://github.com/csscomb/csscomb.js                                 , latest commit date is: 2019-06-24T12:51:43Z
    Repo: https://github.com/CSSLint/csslint                                    , latest commit date is: 2019-02-21T01:35:18Z
    Repo: https://github.com/MangoTheCat/cyclocomp                              , latest commit date is: 2016-11-09T13:32:05Z
    Repo: https://github.com/eliasgranderubio/dagda                             , latest commit date is: 2020-02-25T18:31:50Z
    Repo: https://github.com/thesp0nge/dawnscanner                              , latest commit date is: 2018-11-30T16:00:30Z
    Repo: https://github.com/tsenart/deadcode                                   , latest commit date is: 2016-07-24T21:28:37Z
    Repo: https://github.com/sensiolabs-de/deprecation-detector                 , latest commit date is: 2017-09-06T12:14:01Z
    Repo: https://github.com/Halleck45/DesignPatternDetector                    , latest commit date is: 2015-12-14T08:55:47Z
    Repo: https://github.com/nickng/dingo-hunter                                , latest commit date is: 2019-03-13T23:31:52Z
    Repo: https://github.com/garethr/docker-label-inspector                     , latest commit date is: 2015-11-08T19:15:45Z
    Repo: https://github.com/alexkohler/dogsled                                 , latest commit date is: 2018-11-08T11:28:31Z
    Repo: https://github.com/mibk/dupl                                          , latest commit date is: 2018-10-11T11:49:44Z
    Repo: https://github.com/Kha/electrolysis                                   , latest commit date is: 2017-03-06T09:41:12Z
    Repo: https://github.com/jared-stilwell/escomplex                           , latest commit date is: 2017-07-20T18:06:17Z
    Repo: https://github.com/jquery/esprima                                     , latest commit date is: 2019-11-08T09:57:51Z
    Repo: https://github.com/david-a-wheeler/flawfinder                         , latest commit date is: 2020-02-17T15:24:34Z
    Repo: https://github.com/seattlerb/flay                                     , latest commit date is: 2019-10-09T02:07:04Z
    Repo: https://github.com/lafolle/flen                                       , latest commit date is: 2018-03-11T06:23:46Z
    Repo: https://github.com/JossWhittle/FlintPlusPlus                          , latest commit date is: 2018-04-06T22:24:59Z
    Repo: https://github.com/seattlerb/flog                                     , latest commit date is: 2020-02-08T22:57:56Z
    Repo: https://github.com/yandex/gixy                                        , latest commit date is: 2020-01-09T01:49:37Z
    Repo: https://github.com/leighmcculloch/gochecknoglobals                    , latest commit date is: 2019-03-06T16:23:14Z
    Repo: https://github.com/jgautheron/goconst                                 , latest commit date is: 2020-02-27T15:08:35Z
    Repo: https://github.com/fzipp/gocyclo                                      , latest commit date is: 2015-06-27T05:31:10Z
    Repo: https://github.com/mangothecat/goodpractice                           , latest commit date is: 2019-10-16T16:01:54Z
    Repo: https://github.com/360EntSecGroup-Skylar/goreporter                   , latest commit date is: 2018-09-02T11:56:03Z
    Repo: https://github.com/linuxerwang/goroutine-inspect                      , latest commit date is: 2018-10-27T04:51:11Z
    Repo: https://github.com/TheJaredWilcurt/itcss-specificity-graph            , latest commit date is: 2019-02-06T22:07:11Z
    Repo: https://github.com/mcarton/rust-herbie-lint                           , latest commit date is: 2016-08-28T17:53:48Z
    Repo: https://github.com/htacg/tidy-html5                                   , latest commit date is: 2019-07-08T18:52:14Z
    Repo: https://github.com/nasa-sw-vnv/ikos                                   , latest commit date is: 2019-12-12T22:21:55Z
    Repo: https://github.com/justinabrahms/imhotep                              , latest commit date is: 2017-12-09T20:00:47Z
    Repo: https://github.com/feddischson/include_gardener                       , latest commit date is: 2019-11-17T20:02:37Z
    Repo: https://github.com/feddischson/include_gardener                       , latest commit date is: 2019-11-17T20:02:37Z
    Repo: https://github.com/feddischson/include_gardener                       , latest commit date is: 2019-11-17T20:02:37Z
    Repo: https://github.com/jkinder/jakstab                                    , latest commit date is: 2019-12-10T09:41:29Z
    Repo: https://github.com/HairyFotr/linter                                   , latest commit date is: 2016-12-08T22:48:02Z
    Repo: https://github.com/AtomLinter/linter-rust                             , latest commit date is: 2020-02-11T22:25:53Z
    Repo: https://github.com/Debian/lintian                                     , latest commit date is: 2017-07-23T06:08:45Z
    Repo: https://github.com/lyft/linty_fresh                                   , latest commit date is: 2019-03-19T17:35:45Z
    Repo: https://github.com/walle/lll                                          , latest commit date is: 2019-08-16T13:02:02Z
    Repo: https://github.com/mpeterv/luacheck                                   , latest commit date is: 2018-10-11T21:47:39Z
    Repo: https://github.com/mdempsky/maligned                                  , latest commit date is: 2018-07-07T21:12:28Z
    Repo: https://github.com/client9/misspell                                   , latest commit date is: 2018-03-09T02:03:25Z
    Repo: https://github.com/Trismegiste/Mondrian                               , latest commit date is: 2014-09-16T13:23:02Z
    Repo: https://github.com/alexkohler/nakedret                                , latest commit date is: 2020-01-28T12:33:11Z
    Repo: https://github.com/GeoffreyHecht/paprika                              , latest commit date is: 2018-03-19T20:14:40Z
    Repo: https://github.com/katiefenn/parker                                   , latest commit date is: 2016-07-27T14:09:37Z
    Repo: https://github.com/psecio/parse                                       , latest commit date is: 2018-08-01T18:12:46Z
    Repo: https://github.com/codegram/pelusa                                    , latest commit date is: 2015-01-07T08:10:08Z
    Repo: https://github.com/rskuipers/php-assumptions                          , latest commit date is: 2019-04-04T07:11:49Z
    Repo: https://github.com/QafooLabs/php-refactoring-browser                  , latest commit date is: 2015-04-14T11:32:09Z
    Repo: https://github.com/Andrewsville/PHP-Token-Reflection                  , latest commit date is: 2014-08-06T16:37:44Z
    Repo: https://github.com/wapmorgan/PhpCodeAnalyzer                          , latest commit date is: 2019-05-09T15:24:55Z
    Repo: https://github.com/mamuz/PhpDependencyAnalysis                        , latest commit date is: 2019-10-16T05:18:51Z
    Repo: https://github.com/dunglas/phpdoc-to-typehint                         , latest commit date is: 2017-12-20T14:04:16Z
    Repo: https://github.com/EdgedesignCZ/phpqa                                 , latest commit date is: 2020-02-02T12:14:47Z
    Repo: https://github.com/jmolivas/phpqa                                     , latest commit date is: 2017-12-07T21:31:54Z
    Repo: https://github.com/ovr/phpsa                                          , latest commit date is: 2019-02-27T06:40:35Z
    Repo: https://github.com/rodjek/puppet-lint                                 , latest commit date is: 2020-02-15T22:15:34Z
    Repo: https://github.com/regebro/pyroma                                     , latest commit date is: 2019-11-02T15:01:27Z
    Repo: https://github.com/Qafoo/QualityAnalyzer                              , latest commit date is: 2019-12-04T07:45:28Z
    Repo: https://github.com/linkedin/qark                                      , latest commit date is: 2019-04-05T05:07:04Z
    Repo: https://github.com/apiology/quality                                   , latest commit date is: 2020-01-05T02:17:10Z
    Repo: https://github.com/teamed/qulice                                      , latest commit date is: 2019-12-12T20:13:06Z
    Repo: https://github.com/david-a-wheeler/railroader                         , latest commit date is: 2020-01-24T20:35:34Z
    Repo: https://github.com/icsharpcode/RefactoringEssentials                  , latest commit date is: 2019-10-11T17:55:39Z
    Repo: https://github.com/stripe/safesql                                     , latest commit date is: 2019-09-10T22:49:40Z
    Repo: https://github.com/scalastyle/scalastyle                              , latest commit date is: 2019-03-04T20:14:47Z
    Repo: https://github.com/duaraghav8/Solium                                  , latest commit date is: 2019-09-14T06:33:06Z
    Repo: https://github.com/pocketjoso/specificity-graph                       , latest commit date is: 2016-04-16T07:21:52Z
    Repo: https://github.com/ravenexp/splint                                    , latest commit date is: 2019-08-03T23:38:15Z
    Repo: https://github.com/purcell/sqlint                                     , latest commit date is: 2020-02-11T21:29:48Z
    Repo: https://github.com/StanfordPL/stoke                                   , latest commit date is: 2019-10-03T15:54:12Z
    Repo: https://github.com/Tencent/TscanCode                                  , latest commit date is: 2018-12-10T09:57:07Z
    Repo: https://github.com/Glavin001/tslint-clean-code                        , latest commit date is: 2019-09-14T00:35:35Z
    Repo: https://github.com/Microsoft/tslint-microsoft-contrib                 , latest commit date is: 2019-07-29T09:34:57Z
    Repo: https://github.com/ashleyglee/TSqlRules                               , latest commit date is: 2017-02-21T18:15:41Z
    Repo: https://github.com/ircmaxell/Tuli                                     , latest commit date is: 2015-10-23T17:55:58Z
    Repo: https://github.com/asm89/twig-lint                                    , latest commit date is: 2016-12-30T10:04:11Z
    Repo: https://github.com/mdempsky/unconvert                                 , latest commit date is: 2020-02-28T14:31:38Z
    Repo: https://github.com/Yelp/undebt                                        , latest commit date is: 2017-07-09T23:25:22Z
    Repo: https://github.com/alexkohler/unimport                                , latest commit date is: 2017-11-06T22:33:08Z
    Repo: https://github.com/Vannevelj/VSDiagnostics                            , latest commit date is: 2019-04-21T17:04:28Z
    Repo: https://github.com/Wintellect/Wintellect.Analyzers                    , latest commit date is: 2016-02-29T02:21:22Z
    

    so maybe I will run my python code every month to update the deprecated status from now on, let me know if have any thoughts, Thanks :)

    opened by AristoChen 24
  • JSHint and JSLint are outdated

    JSHint and JSLint are outdated

    JSHint or JSLint don't belong in a list with "awesome" in the name as they're severely out of date and pointing users towards them does a disservice. The one up to date and well-maintained linter for JS is ESLint.

    opened by slikts 23
  • list of open source writing assistance and english linting tools

    list of open source writing assistance and english linting tools

    opened by Foadsf 10
  •  Added missing Salesforce tools

    Added missing Salesforce tools

    Added and enhanced tools for Salesforce-specific languages (Apex, Visualforce). Why don't they shine up in the generated README even if they are mentionen by existing tools?

    opened by rsoesemann 7
  • Are these tools awesome?

    Are these tools awesome?

    I started compiling a list of SAST tools as part of a research assignment, only to stumble upon this awesome list. I noted that several of the tools I found are not yet listed, however I have no idea whether the tools I found are 'awesome'... For some of them I could find some objective proof (e.g. the Gartner Magic Quadrant for SAST tools), and so I created some PRs already.

    PRs created for:

    • AppScan Source HCL #277
    • WhiteHat Sentinel Source #279
    • Synopsys Coverity #280
    • Checkmarx CxSAST #278

    Not sure if awesome:

    Any feedback on the above tools is welcome. If any of the tools is found to be awesome, let me know and I will create PRs.

    stale 
    opened by nvhaver 7
  • Adding diKTat (Kotlin linter) to the list

    Adding diKTat (Kotlin linter) to the list

    What is diKTat:

    1. DiKTat is a formal and strict code style for Kotlin with implementation in a linter.
    2. DiKTat is a collection of Kotlin code style rules implemented as AST visitors on top of KTlint framework. This linter can validate (check) and automatically fix (format) the code. The set of rules (visitors) is bigger than in ktlint standard set of rules (~100 inspections already). All rules are highly configurable.
    3. DiKTat is used to detect (and partially fix) code-style issues, codesmells and bugs in code. And comparing to other linters - it has a very strict and properly documented code-style that it is implementing. But anyway gives a chance to configure or suppress inspections (from code or using configuration file).
    4. DiKTat can be run with it's own maven plugin/gradle plugin/cli
    5. DiKTat has been added to awesome-kotlin list: https://github.com/KotlinBy/awesome-kotlin/blob/readme/README.md#tools-back-
    opened by akuleshov7 6
  • Add star count badges to github repos (partial)

    Add star count badges to github repos (partial)

    #327

    Added star count badges to all the tools in the Python section to see how it looks. To be honest it does end up looking a little busy. Also, I'm not really sure about the API limits of shields.io - even though loading one section works, it may have trouble if the entire readme has these badges (~330 github links currently) on a page load.

    ~~Link to see the readme on my fork: https://github.com/amar1729/static-analysis/#python~~ deleted my old master branch because I had made changes to the README directly rather than using tools.yml (see newer PRs).

    opened by Amar1729 6
  • You may want to add lizard

    You may want to add lizard

    You may want to add lizard for C/C++ (works with C++14), Java, C# (C Sharp), JavaScript, Objective C, Swift, Python, Ruby, TTCN-3, PHP, Scala and GDScript languages

    https://github.com/terryyin/lizard

    opened by agirorn 6
  • Merge exakat/php-static-analysis-tools

    Merge exakat/php-static-analysis-tools

    I found https://github.com/exakat/php-static-analysis-tools

    Maybe there are some tools that are not listed here and it might make sense to complete awesome-static-analysis with those even more :)

    enhancement help wanted stale 
    opened by andygrunwald 6
  • Add mythril and mythx analysis tools

    Add mythril and mythx analysis tools

    Hi 👋 thanks for this awesome project.

    In this pr I've added two related SAST tools:

    • https://github.com/ConsenSys/mythril
    • https://mythx.io

    Let me know if there is okay like this 👌

    opened by JoranHonig 5
  • Better handling of tool dicussions

    Better handling of tool dicussions

    We recently added guidelines on how to deprecate tools in #224 after a longer discussion in #223. Since then I have learned a few things the hard way:

    1. Discussions can quickly get out of hand. It is not easy (and sometimes impossible) to find a solution that pleases everyone.
    2. The role of a project maintainer is to keep collaboration constructive and make all contributors feel welcome.

    In light of that, I propose the following changes for contributing:

    1. ⚠️ will be replaced with ℹ️. We don't want to spread fear, we want to inform.
    2. As far as possible, project maintainers should be involved in the discussion to come to a fair conclusion.
    3. Discussions around tools will be linked in the README.md.
    4. Please remember that we're all human and we all have the same goal of making Open Source a little better.
    opened by mre 5
  • Bump serde from 1.0.151 to 1.0.152 in /data/render

    Bump serde from 1.0.151 to 1.0.152 in /data/render

    Bumps serde from 1.0.151 to 1.0.152.

    Release notes

    Sourced from serde's releases.

    v1.0.152

    • Documentation improvements
    Commits
    • ccf9c6f Release 1.0.152
    • b25d0ea Link to Hjson data format
    • 4f4557f Link to bencode data format
    • bf400d6 Link to serde_tokenstream data format
    • 4d2e36d Wrap flexbuffers bullet point to 80 columns
    • df6310e Merge pull request #2347 from dtolnay/docsrs
    • 938ab5d Replace docs.serde.rs links with intra-rustdoc links
    • ef5a0de Point documentation links to docs.rs instead of docs.serde.rs
    • 5d186c7 Opt out -Zrustdoc-scrape-examples on docs.rs
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • Add support for `demos` and `reviews` section to YAML files

    Add support for `demos` and `reviews` section to YAML files

    I found a couple of helpful links for testing out linters. It would be great to add them to the YAML file. This way we can add links to them on the website. If anybody find a review or demo page for a tool, please add a comment here so we can add it. ❤️

    Demos

    • https://next.sonarqube.com/sonarqube/projects
    • https://eslint.org/play/

    Reviews

    • https://www.capterra.com/p/193379/CodeScene/
    • https://www.capterra.com/p/199025/DeepSource/
    • https://www.capterra.com/p/234335/Codiga/
    • https://www.capterra.com/p/210481/SonarQube/
    • https://www.capterra.com/p/219140/Sigrid/
    • https://stackshare.io/semgrep
    • https://stackshare.io/eslint
    • https://openbase.com/js/eslint/reviews
    opened by mre 0
Owner
Analysis Tools
An open community around code quality and solid engineering standards
Analysis Tools
A curated list of replacements for existing software written in Rust

Awesome Alternatives in Rust A curated list of replacements for existing software written in Rust. If you want to contribute, please read CONTRIBUTING

Takayuki Maeda 2.7k Jan 8, 2023
Programming language made by me to learn other people how to make programming languages :3

Spectra programming language Programming language made for my tutorial videos (my youtube channel): Syntax Declaring a variable: var a = 3; Function

Adi Salimgereyev 3 Jul 25, 2023
Shellcheck - a static analysis tool for shell scripts

ShellCheck - A shell script static analysis tool ShellCheck is a GPLv3 tool that gives warnings and suggestions for bash/sh shell scripts: The goals o

Vidar Holen 31.1k Jan 9, 2023
The dead easy way to use config files in your rust project

Configr The dead easy way to use config files in your project This will load a config.toml file if it exists, otherwise it will create the needed fold

Carsten Kragelund Jørgensen 4 Jul 1, 2022
A list of crates with snippets used by me to learn more about Rust.

my-rust-examples This is a list of crates used by me to learn Rust. How to execute You can use a dependency called cargo-play: cargo install cargo-pla

Ronald 0 Jan 3, 2022
tmplt is a command-line interface tool that allows you to quickly and easily set up project templates for various programming languages and frameworks

tmplt A User Friendly CLI Tool For Creating New Projects With Templates About tmplt is a command-line tool that lets users quickly create new projects

Humble Penguin 35 Apr 8, 2023
A CLI for analyzing the programming languages and how much code written in a project.

projlyzer A CLI for analyzing the programming languages and how much code written in a project. New features are on the way... Example Screenshot Buil

null 10 Apr 10, 2022
Cloc - cloc counts blank lines, comment lines, and physical lines of source code in many programming languages.

cloc Count Lines of Code cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. Latest release: v1.9

null 15.3k Jan 8, 2023
Generate Soufflé Datalog types, relations, and facts that represent ASTs from a variety of programming languages.

treeedb treeedb makes it easier to start writing a source-level program analysis in Soufflé Datalog. First, treeedb generates Soufflé types and relati

Langston Barrett 16 Nov 30, 2022
Cargo-about - 📜 Cargo plugin to generate list of all licenses for a crate 🦀

?? cargo-about Cargo plugin for generating a license listing for all dependencies of a crate See the book ?? for in-depth documentation. Please Note:

Embark 281 Jan 1, 2023
Run code from many programming languages!

Langbot Creating an image Install podman Build an image: podman build -t langbot . Running a language Run podman run --rm -i langbot ./scripts/run.sh

Martin Dørum 14 Jun 9, 2022
Tools - The Rome Toolchain. A linter, compiler, bundler, and more for JavaScript, TypeScript, HTML, Markdown, and CSS.

Rome is currently being rewritten in Rust. Read more about it in our latest blog post. The documentation below is out of date and available for poster

Rome 22k Jan 3, 2023
Use Thunk to build your Rust program that runs on old Windows platforms, support Windows XP and more!

Use Thunk to build your Rust program that runs on old platforms. Thunk uses VC-LTL5 and YY-Thunks to build programs that support old platforms. So, ho

null 6 May 21, 2023
ddi is a wrapper for dd. It takes all the same arguments, and all it really does is call dd in the background

ddi A safer dd Introduction If you ever used dd, the GNU coreutil that lets you copy data from one file to another, then you may have encountered a ty

Tomás Ralph 80 Sep 8, 2022
Scan the symbols of all ELF binaries in all Arch Linux packages for usage of malloc_usable_size

Scan the symbols of all ELF binaries in all Arch Linux packages for usage of malloc_usable_size (-D_FORTIFY_SOURCE=3 compatibility)

null 3 Sep 9, 2023
🐙 Loads config and hosts for gh CLI in Rust.

gh-config-rs Loads config and hosts for gh CLI in Rust. Getting started [dependencies] gh-config = "0.2" Usage use std::error::Error; use gh_config::*

Naoki Ikeguchi 2 Jul 23, 2022
FastSSH is a TUI that allows you to quickly connect to your services by navigating through your SSH config.

Connect quickly to your services ?? FastSSH is a TUI that allows you to quickly connect to your services by navigating through your SSH config. Instal

Julien 85 Dec 14, 2022
Most intuitive global cli maker. *(lazy_static + config-rs + clap)

argone Most intuitive global cli maker. *(lazy_static + config-rs + clap) | Examples | Docs | Latest Note | [dependencies] argone = "0.5" Phases Parsi

Doha Lee 6 Dec 9, 2022
Irx-config - The library provides convenient way to represent/parse configuration from different sources

The irx-config library provides convenient way to represent/parse configuration from different sources. The main goals is to be very easy to use and t

Andriy Bakay 2 Sep 14, 2022