Skip to content

Commit b0dcc7e

Browse files
author
Analysis Tools Bot
committed
Commit list
1 parent 14c13b1 commit b0dcc7e

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,6 +1038,8 @@ It uses the pycodestyle utility to determine what parts of the code needs to be
10381038

10391039
- [Safety](https://safetycli.com/) — Python dependency vulnerability scanner designed to enhance software supply chain security by detecting packages with known vulnerabilities. Checks Python dependencies against a database of known security vulnerabilities and provides detailed reports. Supports CI/CD integration and multiple output formats.
10401040

1041+
- [ty](https://docs.astral.sh/ty/) — An extremely fast Python type checker written in Rust.
1042+
10411043
- [unimport](https://unimport.hakancelik.dev) — A linter, formatter for finding and removing unused import statements.
10421044

10431045
- [vulture](https://github.com/jendrikseipp/vulture) — Find unused classes, functions and variables in Python code.
@@ -1086,6 +1088,8 @@ YAPF follows a distinctive methodology, originating from the 'clang-format' tool
10861088

10871089
- [brakeman](https://brakemanscanner.org) — A static analysis security vulnerability scanner for Ruby on Rails applications.
10881090

1091+
- [Bullet](https://github.com/flyerhzm/bullet) — Help to kill N+1 queries and unused eager loading.
1092+
10891093
- [bundler-audit](https://github.com/rubysec/bundler-audit) — Audit Gemfile.lock for gems with security vulnerabilities reported in [Ruby Advisory Database](https://github.com/rubysec/ruby-advisory-db).
10901094

10911095
- **cane** :warning: — Code quality threshold checking as part of your build.
@@ -2191,6 +2195,8 @@ but with the following improvements:
21912195
<h2>Rails</h2>
21922196

21932197

2198+
- [Bullet](https://github.com/flyerhzm/bullet) — Help to kill N+1 queries and unused eager loading.
2199+
21942200
- [DatabaseConsistency](https://github.com/djezzzl/database_consistency) — The tool to avoid various issues due to inconsistencies and inefficiencies between a database schema and application models.
21952201

21962202
- [dawnscanner](https://github.com/thesp0nge/dawnscanner) — A static analysis security scanner for ruby written web applications. It supports Sinatra, Padrino and Ruby on Rails frameworks.

data/api/tools.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,6 +1612,35 @@
16121612
"demos": null,
16131613
"wrapper": null
16141614
},
1615+
"bullet": {
1616+
"name": "Bullet",
1617+
"categories": [
1618+
"linter"
1619+
],
1620+
"languages": [
1621+
"ruby"
1622+
],
1623+
"other": [
1624+
"rails"
1625+
],
1626+
"licenses": [
1627+
"MIT License"
1628+
],
1629+
"types": [
1630+
"cli"
1631+
],
1632+
"homepage": "https://github.com/flyerhzm/bullet",
1633+
"source": "https://github.com/flyerhzm/bullet",
1634+
"pricing": null,
1635+
"plans": null,
1636+
"description": "Help to kill N+1 queries and unused eager loading.",
1637+
"discussion": null,
1638+
"deprecated": null,
1639+
"resources": null,
1640+
"reviews": null,
1641+
"demos": null,
1642+
"wrapper": null
1643+
},
16151644
"bundler-audit": {
16161645
"name": "bundler-audit",
16171646
"categories": [
@@ -20750,6 +20779,33 @@
2075020779
"demos": null,
2075120780
"wrapper": null
2075220781
},
20782+
"ty": {
20783+
"name": "ty",
20784+
"categories": [
20785+
"linter"
20786+
],
20787+
"languages": [
20788+
"python"
20789+
],
20790+
"other": [],
20791+
"licenses": [
20792+
"Other"
20793+
],
20794+
"types": [
20795+
"cli"
20796+
],
20797+
"homepage": "https://docs.astral.sh/ty/",
20798+
"source": "https://github.com/astral-sh/ty",
20799+
"pricing": null,
20800+
"plans": null,
20801+
"description": "An extremely fast Python type checker written in Rust.",
20802+
"discussion": null,
20803+
"deprecated": null,
20804+
"resources": null,
20805+
"reviews": null,
20806+
"demos": null,
20807+
"wrapper": null
20808+
},
2075320809
"typescript-call-graph": {
2075420810
"name": "TypeScript Call Graph",
2075520811
"categories": [

0 commit comments

Comments
 (0)