Metadata-Version: 2.4
Name: glint-linter
Version: 0.1.0
Summary: A thin Semgrep-backed linter for AI coding failure patterns
Project-URL: Homepage, https://github.com/370025263/glint
Project-URL: Repository, https://github.com/370025263/glint
Project-URL: Issues, https://github.com/370025263/glint/issues
Author-email: 370025263 <370025263@qq.com>
License-Expression: MIT
License-File: LICENSE
Keywords: ai-coding,linter,semgrep,static-analysis
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.9
Requires-Dist: semgrep>=1.77.0
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.5; extra == 'dev'
Requires-Dist: twine>=5.0; extra == 'dev'
Description-Content-Type: text/markdown

# Glint

[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/370025263/glint/badge)](https://scorecard.dev/viewer/?uri=github.com/370025263/glint)

Glint is a small CLI wrapper around Semgrep with an opinionated rule pack for AI coding failure patterns.

The PyPI distribution is `glint-linter`; the installed command is `glint`.

## Install

```bash
pip install glint-linter
```

## Usage

```bash
glint scan .
glint scan . --json
glint scan . --no-suspicious
glint rules
```

Glint reports two finding kinds:

- `ISSUE`: a Semgrep pattern that is specific enough to report as a concrete problem.
- `SUSPICIOUS`: a Semgrep pattern that indicates code worth reviewing.

The first version intentionally skips repository workflow checks such as CI configuration, issue approvals, or pull request policy.

## Documentation

- [Changelog](CHANGELOG.md)
- [Contributing](CONTRIBUTING.md)
- [Maintainers](MAINTAINERS.md)
- [Security policy](SECURITY.md)

## Security

Please report security issues using the process in [SECURITY.md](SECURITY.md).
