Skip to content

Commit 9aa5fbf

Browse files
author
Analysis Tools Bot
committed
Commit list
1 parent fd1049c commit 9aa5fbf

File tree

2 files changed

+125
-0
lines changed

2 files changed

+125
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1439,6 +1439,8 @@ It supports multiple languages and is designed to be extensible, allowing you to
14391439

14401440
- [Code Intelligence](https://www.code-intelligence.com) :copyright: — CI/CD-agnostic DevSecOps platform which combines industry-leading fuzzing engines for finding bugs and visualizing code coverage
14411441

1442+
- [Code-Graph-RAG](https://code-graph-rag.com) — Builds knowledge graphs from multi-language codebases using Tree-sitter AST parsing and stores them in Memgraph. Supports 11 programming languages with a unified graph schema and enables natural language querying and editing of code structure and relationships. Functions as an MCP server for AI assistant integration.
1443+
14421444
- [Codeac](https://www.codeac.io/?ref=awesome-static-analysis) :copyright: — 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)
14431445

14441446
- [codeburner](https://groupon.github.io/codeburner) — Provides a unified interface to sort and act on the issues it finds.
@@ -1491,6 +1493,8 @@ It supports multiple languages and is designed to be extensible, allowing you to
14911493

14921494
- [DevSkim](https://github.com/microsoft/devskim) — Regex-based static analysis tool for Visual Studio, VS Code, and Sublime Text - C/C++, C#, PHP, ASP, Python, Ruby, Java, and others.
14931495

1496+
- [diesel-guard](https://github.com/ayarotsky/diesel-guard) — Linter for dangerous Postgres migration patterns in Diesel and SQLx. Prevents downtime caused by unsafe schema changes.
1497+
14941498
- [dotnet-format](https://github.com/dotnet/format) — A code formatter for .NET. Preferences will be read from an `.editorconfig` file, if present, otherwise a default set of preferences will be used. At this time dotnet-format is able to format C# and Visual Basic projects with a subset of supported `.editorconfig` options.
14951499

14961500
- [Embold](https://embold.io) :copyright: — 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.
@@ -2007,6 +2011,8 @@ Its technology helps developers automate testing, find bugs, and reduce manual l
20072011

20082012
- [Angular ESLint](https://github.com/angular-eslint/angular-eslint#readme) — Linter for Angular projects
20092013

2014+
- [axe-core](https://www.deque.com/axe/) — Accessibility engine for automated Web UI testing. Tests HTML against WCAG 2.0, 2.1, and 2.2 guidelines. Used by Google Lighthouse, Microsoft Accessibility Insights, and thousands of organizations worldwide.
2015+
20102016
- **Bootlint** :warning: — An HTML linter for Bootstrap projects.
20112017

20122018
- [ERB Lint](https://github.com/Shopify/erb-lint) — Lint your ERB or HTML files
@@ -2029,6 +2035,8 @@ Its technology helps developers automate testing, find bugs, and reduce manual l
20292035

20302036
- [Nu Html Checker](https://validator.github.io/validator/) — Helps you catch problems in your HTML/CSS/SVG
20312037

2038+
- [Pa11y](https://pa11y.org/) — Automated accessibility testing tool that runs HTML CodeSniffer or axe-core from the command line. Supports CI/CD integration, multiple reporters, and testing against WCAG 2.1 AA standards.
2039+
20322040
- [Polymer-analyzer](https://github.com/Polymer/tools/tree/master/packages/analyzer) — A static analysis framework for Web Components.
20332041

20342042

data/api/tools.json

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -933,6 +933,33 @@
933933
"demos": null,
934934
"wrapper": null
935935
},
936+
"axe-core": {
937+
"name": "axe-core",
938+
"categories": [
939+
"linter"
940+
],
941+
"languages": [],
942+
"other": [
943+
"html"
944+
],
945+
"licenses": [
946+
"MPL-2.0"
947+
],
948+
"types": [
949+
"cli"
950+
],
951+
"homepage": "https://www.deque.com/axe/",
952+
"source": "https://github.com/dequelabs/axe-core",
953+
"pricing": null,
954+
"plans": null,
955+
"description": "Accessibility engine for automated Web UI testing. Tests HTML against WCAG 2.0, 2.1, and 2.2 guidelines. Used by Google Lighthouse, Microsoft Accessibility Insights, and thousands of organizations worldwide.",
956+
"discussion": null,
957+
"deprecated": null,
958+
"resources": null,
959+
"reviews": null,
960+
"demos": null,
961+
"wrapper": null
962+
},
936963
"axivion-bauhaus-suite": {
937964
"name": "Axivion Bauhaus Suite",
938965
"categories": [
@@ -3253,6 +3280,41 @@
32533280
"demos": null,
32543281
"wrapper": null
32553282
},
3283+
"code-graph-rag": {
3284+
"name": "Code-Graph-RAG",
3285+
"categories": [
3286+
"meta"
3287+
],
3288+
"languages": [
3289+
"cpp",
3290+
"go",
3291+
"java",
3292+
"javascript",
3293+
"lua",
3294+
"python",
3295+
"rust",
3296+
"scala",
3297+
"typescript"
3298+
],
3299+
"other": [],
3300+
"licenses": [
3301+
"MIT"
3302+
],
3303+
"types": [
3304+
"cli"
3305+
],
3306+
"homepage": "https://code-graph-rag.com",
3307+
"source": "https://github.com/vitali87/code-graph-rag",
3308+
"pricing": null,
3309+
"plans": null,
3310+
"description": "Builds knowledge graphs from multi-language codebases using Tree-sitter AST parsing and stores them in Memgraph. Supports 11 programming languages with a unified graph schema and enables natural language querying and editing of code structure and relationships. Functions as an MCP server for AI assistant integration.",
3311+
"discussion": null,
3312+
"deprecated": null,
3313+
"resources": null,
3314+
"reviews": null,
3315+
"demos": null,
3316+
"wrapper": null
3317+
},
32563318
"code-intelligence": {
32573319
"name": "Code Intelligence",
32583320
"categories": [
@@ -5941,6 +6003,34 @@
59416003
"demos": null,
59426004
"wrapper": null
59436005
},
6006+
"diesel-guard": {
6007+
"name": "diesel-guard",
6008+
"categories": [
6009+
"linter"
6010+
],
6011+
"languages": [
6012+
"rust",
6013+
"sql"
6014+
],
6015+
"other": [],
6016+
"licenses": [
6017+
"MIT License"
6018+
],
6019+
"types": [
6020+
"cli"
6021+
],
6022+
"homepage": "https://github.com/ayarotsky/diesel-guard",
6023+
"source": "https://github.com/ayarotsky/diesel-guard",
6024+
"pricing": null,
6025+
"plans": null,
6026+
"description": "Linter for dangerous Postgres migration patterns in Diesel and SQLx. Prevents downtime caused by unsafe schema changes.",
6027+
"discussion": null,
6028+
"deprecated": null,
6029+
"resources": null,
6030+
"reviews": null,
6031+
"demos": null,
6032+
"wrapper": null
6033+
},
59446034
"diff-rs": {
59456035
"name": "diff.rs",
59466036
"categories": [
@@ -13398,6 +13488,33 @@
1339813488
],
1339913489
"wrapper": null
1340013490
},
13491+
"pa11y": {
13492+
"name": "Pa11y",
13493+
"categories": [
13494+
"linter"
13495+
],
13496+
"languages": [],
13497+
"other": [
13498+
"html"
13499+
],
13500+
"licenses": [
13501+
"LGPL-3.0"
13502+
],
13503+
"types": [
13504+
"cli"
13505+
],
13506+
"homepage": "https://pa11y.org/",
13507+
"source": "https://github.com/pa11y/pa11y",
13508+
"pricing": null,
13509+
"plans": null,
13510+
"description": "Automated accessibility testing tool that runs HTML CodeSniffer or axe-core from the command line. Supports CI/CD integration, multiple reporters, and testing against WCAG 2.1 AA standards.",
13511+
"discussion": null,
13512+
"deprecated": null,
13513+
"resources": null,
13514+
"reviews": null,
13515+
"demos": null,
13516+
"wrapper": null
13517+
},
1340113518
"packj": {
1340213519
"name": "packj",
1340313520
"categories": [

0 commit comments

Comments
 (0)