From bab8d7b0f32055f285ed3ac30573ae2c15b9cd24 Mon Sep 17 00:00:00 2001 From: FAnett1997 <72979439+FAnett1997@users.noreply.github.com> Date: Mon, 26 Apr 2021 10:13:40 +0200 Subject: [PATCH] Adding code maintainability badge Dear Contributors, As professional developers, you probably must be well aware of the meaning and importance of code maintainability! It expresses how difficult and risky it is to change the code. Maintainability is affected by a variety of low-level code quality attributes, like source code metrics, code duplications, clone smells, coding issues, and so on. Being able to measure it is crucial for keeping it at desired level. We, at FrontEndART, have developed advanced algorithms based on benchmarks and quality models that allow us to quantify and track changes of code maintainability. The approach called "Probabilistic Software Quality Model" is based on the research conducted at the Software Engineering Department of University of Szeged (Hungary): https://ieeexplore.ieee.org/document/6080791. We are excited to allow open source communities to use our tool called QualityGate (https://www.quality-gate.com), which incorporates these methods, enabling them to track their projects' maintainability. If you agree that measuring, monitoring and promoting the maintainability of your project's code base adds a value to it, please accept this pull-request, which just adds a new badge to your project that shows its actual level of maintainability. If you have further questions or comments, please do not hesitate to contact us at info@frontendart.com. Best regards, FrontEndART team --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6d659773c..6e60787b9 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ [![AppVeyor CI Build Status (Windows)](https://img.shields.io/appveyor/build/parrt/antlr4?label=Windows)](https://ci.appveyor.com/project/parrt/antlr4) [![Circle CI Build Status (Linux)](https://img.shields.io/circleci/build/gh/antlr/antlr4/master?label=Linux)](https://app.circleci.com/pipelines/github/antlr/antlr4) [![Travis-CI Build Status (Swift-Linux)](https://img.shields.io/travis/antlr/antlr4.svg?label=Linux-Swift&branch=master)](https://travis-ci.com/github/antlr/antlr4) +[![Maintainability](https://cloud.quality-gate.com/dashboard/api/badge?projectName=antlr_antlr4&branchName=master)](https://cloud.quality-gate.com/dashboard/branches/265434#overview) **ANTLR** (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files. It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can build parse trees and also generates a listener interface (or visitor) that makes it easy to respond to the recognition of phrases of interest.