All Projects → emacs-elsa → Elsa

emacs-elsa / Elsa

Licence: gpl-3.0
Emacs Lisp Static Analyzer

Projects that are alternatives of or similar to Elsa

Comb
Interactive code auditing and grep tool in Emacs Lisp
Stars: ✭ 58 (-88.04%)
Mutual labels:  static-analysis, emacs
Dogma
🔐 A code style linter for Elixir
Stars: ✭ 472 (-2.68%)
Mutual labels:  static-analysis
Org Roam Server
A Web Application to Visualize the Org-Roam Database
Stars: ✭ 443 (-8.66%)
Mutual labels:  emacs
Quelpa
Build and install your Emacs Lisp packages on-the-fly directly from source
Stars: ✭ 455 (-6.19%)
Mutual labels:  emacs
Frontmacs
Package-based, web-centric, customizable, awesome-by-default, acceptance-tested Emacs distribution
Stars: ✭ 445 (-8.25%)
Mutual labels:  emacs
Sonar Dotnet
Code analyzer for C# and VB.NET projects https://redirect.sonarsource.com/plugins/vbnet.html
Stars: ✭ 466 (-3.92%)
Mutual labels:  static-analysis
Salus
Security scanner coordinator
Stars: ✭ 441 (-9.07%)
Mutual labels:  static-analysis
Spacemacs Theme
Light and dark theme for spacemacs that supports GUI and terminal
Stars: ✭ 483 (-0.41%)
Mutual labels:  emacs
Flowdroid
FlowDroid Static Data Flow Tracker
Stars: ✭ 471 (-2.89%)
Mutual labels:  static-analysis
Filestash
🦄 A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze, ...
Stars: ✭ 5,231 (+978.56%)
Mutual labels:  emacs
Helm Dash
Browse Dash docsets inside emacs
Stars: ✭ 455 (-6.19%)
Mutual labels:  emacs
Spacemacs
A community-driven Emacs distribution - The best editor is neither Emacs nor Vim, it's Emacs *and* Vim!
Stars: ✭ 21,906 (+4416.7%)
Mutual labels:  emacs
Emacs Color Themes
A collection of custom themes for Emacs. All the themes are named after famous programmers.
Stars: ✭ 469 (-3.3%)
Mutual labels:  emacs
Lsp Java
lsp-mode ❤️ java
Stars: ✭ 446 (-8.04%)
Mutual labels:  emacs
Sark
IDAPython Made Easy
Stars: ✭ 477 (-1.65%)
Mutual labels:  static-analysis
Awesome Linters
A community-driven list of awesome linters.
Stars: ✭ 439 (-9.48%)
Mutual labels:  static-analysis
Anki Editor
Emacs minor mode for making Anki cards with Org
Stars: ✭ 453 (-6.6%)
Mutual labels:  emacs
Eslint Plugin Sonarjs
SonarJS rules for ESLint
Stars: ✭ 458 (-5.57%)
Mutual labels:  static-analysis
Remacs
Rust ❤️ Emacs
Stars: ✭ 4,503 (+828.45%)
Mutual labels:  emacs
Spacemacs Private
My Spacemacs config
Stars: ✭ 480 (-1.03%)
Mutual labels:  emacs

Elsa - Emacs Lisp Static Analyser Build Status

(Your favourite princess now in Emacs!)

Coverage Status Paypal logo Patreon

Elsa is a tool that analyses your code without loading or running it. It can track types and provide helpful hints when things don't match up before you even try to run the code.

Table of Contents

State of the project

We are currently in a very early ALPHA phase. API is somewhat stable but the type system and annotations are under constant development. Things might break at any point.

Non-exhaustive list of features

Here comes a non-exhaustive list of some more interesting features.

The error highlightings in the screenshots are provided by Elsa Flycheck extension.

Everything you see here actually works, this is not just for show!

Detect dead code

Detect suspicious branching logic

Find unreachable code in short-circuiting forms

Enforce style rules

Provide helpful tips for making code cleaner

Add custom rules for your own project with rulesets

Make formatting consistent

Look for suspicious code

Find references to free/unbound variables

Don't assign to free variables

Detect conditions which are always true or false

Make sure functions are passed enough arguments

Make sure functions are not passed too many arguments

Track types of expressions

Check types of arguments passed to functions for compatibility

How do I run it

Elsa can be run with makem.sh or with Cask.

makem.sh

Using makem.sh, simply run this command from the project root directory, which installs and runs Elsa in a temporary sandbox:

./makem.sh --sandbox lint-elsa

To use a non-temporary sandbox directory named .sandbox and avoid installing Elsa on each run:

  1. Initialize the sandbox: ./makem.sh -s.sandbox --install-deps --install-linters.
  2. Run Elsa: ./makem.sh -s.sandbox lint-elsa.

See makem.sh's documentation for more information.

Cask

[RECOMMENDED] Using packaged version

This method uses Cask and installs Elsa from MELPA.

  1. Add (depends-on "elsa") to Cask file of your project.
  2. Run cask install.
  3. cask exec elsa FILE-TO-ANALYSE [ANOTHER-FILE...] to analyse the file.

Using development version

To use the development version of Elsa, you can clone the repository and use the cask link feature to use the code from the clone.

  1. git clone https://github.com/emacs-elsa/Elsa.git somewhere to your computer.
  2. Add (depends-on "elsa") to Cask file of your project.
  3. Run cask link elsa <path-to-elsa-repo>.
  4. cask exec elsa FILE-TO-ANALYSE [ANOTHER-FILE...] to analyse the file.

Flycheck integration

If you use flycheck you can use the flycheck-elsa package which integrates Elsa with Flycheck.

Configuration

By default Elsa core comes with very little built-in logic, only understanding the elisp special forms.

However, we ship a large number of extensions for popular packages such as eieio, cl, dash or even elsa itself.

You can configure Elsa by adding an Elsafile.el to your project. The Elsafile.el should be located next to the Cask file.

There are multiple ways to extend the capabilities of Elsa.

Analysis extension

One is by providing special analysis rules for more forms and functions where we can exploit the knowledge of how the function behaves to narrow the analysis down more.

For example, we can say that if the input of not is t, the return value is always nil. This encodes our domain knowledge in form of an analysis rule.

All the rules are added in form of extensions. Elsa has few core extensions for most common built-in functions such as list manipulation (car, nth...), predicates (stringp, atomp...), logical functions (not, ...) and so on. These are automatically loaded because the functions are so common virtually every project is going to use them.

Additional extensions are provided for popular external packages such as dash.el. To use them, add to your Elsafile.el the register-extensions form, like so

(register-extensions
 dash
 ;; more extensions here
 )

Rulesets

After analysis of the forms is done we have all the type information and the AST ready to be further processed by various checks and rules.

These can be (non-exhaustive list):

  • Stylistic, such as checking that a variable uses lisp-case for naming instead of snake_case.
  • Syntactic, such as checking we are not wrapping the else branch of if with a useless progn.
  • Semantic, such as checking that the condition of if does not always evaluate to non-nil (in which case the if form is useless).

Elsa provides some built-in rulesets and more can also be used by loading extensions.

To register a ruleset, add the following form to Elsafile.el

(register-ruleset
 dead-code
 style
 ;; more rulesets here
 )

Type annotations

In Elisp users are not required to provide type annotations to their code. While at many places the types can be inferred there are places, especially in user-defined functions, where we can not guess the correct type (we can only infer what we see during runtime).

Users can annotate their defun definitions like this:

;; (elsa-pluralize :: String -> Int -> String)
(defun elsa-pluralize (word n)
  "Return singular or plural of WORD based on N."
  (if (= n 1)
      word
    (concat word "s")))

The (elsa-pluralise :: ...) inside a comment form provides additional information to the Elsa analysis. Here we say that the function following such a comment takes two arguments, string and int, and returns a string.

The syntax of the type annotation is somewhat modeled after Haskell but there are some special constructs available to Elsa

Here are general guidelines on how the types are constructed.

  • For built-in types with test predicates, drop the p or -p suffix and PascalCase to get the type:
    • stringpString
    • integerpInteger (Int is also accepted)
    • markerpMarker
    • hash-table-pHashTable
  • A type for everything is called Mixed. It accepts anything and is always nullable. This is the default type for when we lack type information.
  • Sum types can be specified with | syntax, so String | Integer is a type accepting both strings or integers.
  • Cons types are specified by prefixing wrapping the car and cdr types with a Cons constructor, so Cons Int Int is a type where the car is an int and cdr is also an int, for example (1 . 3).
  • List types are specified by wrapping a type in a vector [] constructor, so [Int] is a list of integers and [String | Int] is a list of items where each item is either a string or an integer. A type constructor List is also supported.
  • Function types are created by separating argument types and the return type with -> token.
  • To make variadic types (for the &rest keyword) add three dots ... after the type, so String... -> String is a function taking any number of strings and returning a string, such as concat. Note: a variadic type is internally just a list of the same base type but it has a flag that allows the function be of variable arity. A Variadic type constructor is also available to construct complex types.
  • To mark type as nullable you can attach ? to the end of it, so that Int? accepts any integer and also a nil. A Maybe type constructor is also available to construct complex types.

Some type constructors have optional arguments, for example writing just Cons will assume the car and cdr are of type Mixed.

How can I contribute to this project

Open an issue if you want to work on something (not necessarily listed below in the roadmap) so we won't duplicate work. Or just give us feedback or helpful tips.

You can provide type definitions for built-in functions by extending elsa-typed-builtin.el. There is plenty to go. Some of the types necessary to express what we want might not exist or be supported yet, open an issue so we can discuss how to model things.

F.A.Q.

What's up with the logo?

See the discussion.

For developers

After calling (require 'elsa-font-lock) there is a function elsa-setup-font-lock which can be called from emacs-lisp-mode-hook to set up some additional font-locking for Elsa types.

How to write an extension for your-favourite-package

How to write a ruleset

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].