refex VS tree-sitter-swift

Compare refex vs tree-sitter-swift and see what are their differences.

refex

A syntactically aware search-and-replace tool for Python. (by ssbr)

tree-sitter-swift

Swift grammar for tree-sitter (by tree-sitter)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
refex tree-sitter-swift
3 2
14 57
- -
5.0 0.0
7 months ago over 2 years ago
Python JavaScript
Apache License 2.0 -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

refex

Posts with mentions or reviews of refex. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-22.
  • Writing and Linting Python at Scale
    4 projects | news.ycombinator.com | 22 Nov 2023
    As someone who worked on a similar tool (https://github.com/ssbr/refex/tree/main/refex/fix/fixers, I did a bunch of the work to prep this for open-sourcing, though I think all my contributions are hidden behind the "Google-internal" anonymization), having auto-applied or auto-appliable fixers like this is super useful.

    They can be auto-applied by post-commit (e.g. a generic `git fixcommit` style command that runs all the relevant lint tools and fixes them in the working copy, letting you review before push), or applied during code review (automatic comments with a "click here to apply fix" interface), both of which are nice.

    Plus the same underlying tooling can be used to write more complex one-off fixes that may be used for migrations or cleanups.

  • I learnt to use ASTs to patch 100,000s lines of python code
    2 projects | /r/Python | 5 Jun 2021
    You might like Refex, which automates AST transformations like this:
  • Semgrep: Like Grep but for Code
    12 projects | news.ycombinator.com | 22 Apr 2021
    There's lots of confusion about what semgrep does here, which is kind of unfortunate. I haven't touched it much, but I have built a very similar tool (I'm one of the contributors to refex[1], which is a very similar project).

    The starting point of semantic grep is very useful. When you have a big codebase, you often want to detect antipatterns, or not even antipatterns, but just uses of a thing, say you're renaming a method and want to track down the callers.

    Being able to act on the AST, instead of hoping you searched up all of the variants of whitespace and line breaks and, depending on the specific example, different uses of argument passing, is really useful.

    But often when you're semantically grepping, your goal is to replace something with something else (this is what refex was initially built for: to aide in large scale changes in python, as a sort of equivalent to the C++ tools that Google uses).

    But then you want to shift left even further: once you have a pattern that you want to replace once, you can just enforce that a linter yell at you when anyone does it again. So it's very natural to develop a linter-style thing on top of one of these[2].

    This is, as I understand it sort of the same thing that happens in C++: clang-tidy and clang-format are written on top of AST libraries that can be used for ad-hoc analysis and transformations, but you can also just plug them into a linter.

    The thing is, for most organizations, enforcing code style and best practices is more valuable than apply a refactoring to 10M lines of code, because most organizations don't have 10M lines of code to refactor. That doesn't mean that these tools aren't also useful for ad-hoc transforms and exploratory analysis. They absolutely are!

    [1]: https://github.com/ssbr/refex

    [2]: https://github.com/ssbr/refex/tree/main/refex/fix

tree-sitter-swift

Posts with mentions or reviews of tree-sitter-swift. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-08-28.
  • NeoVim setup for iOS Dev ( xcodebuild etc. ) ?
    2 projects | /r/neovim | 28 Aug 2021
    You could probably set up something to work on Swift packages, however the tree sitter grammar for Swift hasn’t been updated since 2019. sourcekit-lsp also isn’t likely to help you out either because it’s not made to understand Xcode projects. You’d need an LSP capable of parsing a .pbxproj (I highly doubt there is one, but I haven’t looked around), which has the terrible downside of not being something Apple considers a public API and can and will introduce breaking changes on any Xcode update. An Apple engineer confirmed this with me during a lab in 2020 when I was asking about how doing some hacky things with binary Swift packages.
  • Semgrep: Like Grep but for Code
    12 projects | news.ycombinator.com | 22 Apr 2021
    https://github.com/returntocorp/ocaml-tree-sitter/blob/maste... appears to be the general answer to your question, but navigating to the tree-sitter docs shows that tree-sitter has one in progress: https://github.com/tree-sitter/tree-sitter-swift so hopefully the machinery to incorporate it into semgrep will not be horrific

What are some alternatives?

When comparing refex and tree-sitter-swift you can also consider the following projects:

pre-commit - A framework for managing and maintaining multi-language pre-commit hooks.

Bear - Bear is a tool that generates a compilation database for clang tooling.

checkr - Custom static analysis rules for the lazy. Write project specific static analysis checks in a few lines of code.

ocaml-tree-sitter-semgrep - Generate parsers from tree-sitter grammars extended to support Semgrep patterns

sourcekit-lsp - Language Server Protocol implementation for Swift and C-based languages

CCGrep - Code Clone Detector like grep

semgrep - Lightweight static analysis for many languages. Find bug variants with patterns that look like source code.

terraform-provider-aws - The AWS Provider enables Terraform to manage AWS resources.

actions-preview.nvim - Fully customizable previewer for LSP code actions.