alint

Language-agnostic linter for repository structure, files, and content (by asamarts)

Alint Alternatives

Similar projects and alternatives to alint

  1. ntfy

    331 alint VS ntfy

    Send push notifications to your phone or desktop using PUT/POST

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. pirsch

    47 alint VS pirsch

    Pirsch is a drop-in, server-side, no-cookie, and privacy-focused analytics solution for Go.

  4. hister

    27 alint VS hister

    Your own search engine

  5. voiden

    22 alint VS voiden

    Design, Test and Document APIs in plain Markdown. Compose Requests with API blocks. Reuse, Replace & Version everything just like code. Offline, Truly Git Native, No Lock-in.

  6. devlensOSS

    15 alint VS devlensOSS

    An Open Source Intelligent Codebase Visualizer for javascript, reactjs, nextjs and nodejs for easy PR review, fast Onboarding and deep architectural understanding

  7. tsz

    18 alint VS tsz

    Discontinued A performance-first TypeScript checker [Moved to: https://github.com/tsz-org/tsz] (by mohsen1)

  8. dirac

    15 alint VS dirac

    Open Source Coding Agent singularly focused efficiency. Reduces API costs by 50-80% vs other agent AND improves the code quality at the same time. Uses Hash Anchored edits, massively parallel operations, AST manipulation and many many other optimizations. https://dirac.run/

  9. aweb

    5 alint VS aweb

    Coordination tools for AI agents: messaging, tasks and file reservations.

  10. as-notes

    13 alint VS as-notes

    VS Code Personal Knowledge Management System (PKMS) - Markdown Editing, Wikilinks (inc. Nested), Tasks, Kanban, Files, Publish to HTML, Daily Journal, Encrypted Notes

  11. hnarcade

    12 alint VS hnarcade

    The HN Arcade - https://news.ycombinator.com/item?id=46793693

  12. BetterCapture

    4 alint VS BetterCapture

    The macOS screen recorder for the rest of us - always free and open source with a native look and feel 📺

  13. dotfriedrice

    31 alint VS dotfriedrice

    Set up a developer friendly niri / Arch Linux system in minutes. Also supports WSL 2, Debian, Ubuntu and macOS for CLI tools!

  14. KeibiDrop

    KeibiDrop is a tool that allows any two computers to transfer files and folders via a secure virtual mountpoint

  15. opal

    8 alint VS opal

    A git enabled local-first browser-first markdown workspace wysiwyg editor and publisher. Built with mdx-editor, code mirror 6, react, shadcn and typescript (by rbbydotdev)

  16. tabwrangler

    4 alint VS tabwrangler

    A browser extension that automatically closes your unused tabs so you can focus on the tabs that matter

  17. betterleaks

    Scan the world (for secrets)

  18. opendal

    16 alint VS opendal

    Apache OpenDAL: One Layer, All Storage.

  19. disposition

    SVG diagram generator

  20. free-shopify-sections

    Free Shopify Sections by WebSensePro

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better alint alternative or higher similarity.

alint discussion

Log in or Post with

alint reviews and mentions

Posts with mentions or reviews of alint. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2026-07-10.
  • You're Not a Better Engineer Because You Type Git Commands by Hand
    2 projects | news.ycombinator.com | 10 Jul 2026
    At the end of the day LLM output is not deterministic, and the burden shifts from writing code to reviewing it. It makes sense to cover the review surface with deterministic checks/validations as much as possible - unit test, linters, static analysis tools, e2e integration test etc. one gap I noticed when it comes to such tools is that they are generally language/stack specific and don't cover things like file/directory structure/naming, file relationships/references, use of potentially harmful Unicode [0], general file/config structure, permissions, broken symlinks, files which should not be committed but are, etc. , etc. I've been building a tool - a general repo shape/structure linter, with extensible config/rules - to cover these cases in a deterministic way [1] [2].

    [0] https://snyk.io/articles/defending-against-glassworm/

    [1] https://github.com/asamarts/alint

    [2] https://alint.org/

  • Ask HN: What are you working on? (June 2026)
    170 projects | news.ycombinator.com | 14 Jun 2026
    I'm working on a general repo shape/structure linter (language agnostic)[0] - the idea is to enforce things like directory structure, existence of various files (LICENCE, etc.), file naming patterns, jsonpath + schema over json/yaml/toml, absence of potentially malicious unicode. It comes with rule bundles for various languages/presets which can be combined and extended. A goal is for it to be very fast, and useable on huge monorepos. I noticed myself having to add various forms of validation/scripts when coding using AI, and decided to build a reusable, fast tool for this purpose instead of rolling validation scripts for each project.

    [0] https://github.com/asamarts/alint

  • When AI Builds Itself
    1 project | news.ycombinator.com | 9 Jun 2026
    I've been building a general linter tool to help keep repos in a consistent and clean shape when working with AI [0]. You can define repo and file layout, structure, hygiene rules and have them checked in pre-commit, in ci, or manually. It also integrates and plays well with AGENTS.md - allowing exporting agent instructions from the alint rule config [1].

    [0] https://github.com/asamarts/alint

    [1] https://alint.org/agent-friendly-linter/

  • Ask HN: What are tools you have made for yourself since the advent of AI
    239 projects | news.ycombinator.com | 8 Jun 2026
    I've made a general repo linting tool [0][1]. Originally it's purpose was to replace a bunch of repo hygiene/structure validation scripts I ended up adding as I noticed various sloppy AI changes. I am ended up going through a bunch of open source repos to see what other kinds of validations they had via scripts and incorporated those into the tool as a set of general/extensible rule types. This tool allows you to define repo structure, hygiene and other rules in a declarative way and it is very fast [2] (great for pre-commit and CI workflows).

    [0] https://alint.org/

    [1] https://github.com/asamarts/alint

    [2] https://alint.org/benchmarks/

  • Show HN: Alint, a fast linter for repository structure and hygiene
    2 projects | news.ycombinator.com | 19 May 2026
  • Ask HN: What Are You Working On? (May 2026)
    165 projects | news.ycombinator.com | 10 May 2026
    I'm working on a general repo shape/structure linter (language agnostic)[0] - the idea is to enforce things like directory structure, existence of various files (LICENCE, etc.), file naming patterns, jsonpath + schema over json/yaml/toml, absence of potentially malicious unicode. It comes with rule bundles for various languages/presets which can be combined and extended. A goal is for it to be very fast, and useable on huge monorepos. I noticed myself having to add various forms of validation/scripts when coding using AI, and decided to build a reusable, fast tool for this purpose instead of rolling validation scripts for each project.

    [0] https://github.com/asamarts/alint

  • A note from our sponsor - SaaSHub
    www.saashub.com | 17 Jul 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic alint repo stats
9
2
-
2 months ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that Rust is
the 3rd most popular programming language
based on number of references?