Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-xstate

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-xstate

ESLint rules for XState

  • 1.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6.6K
increased by8.78%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-xstate

ESLint plugin to check for common mistakes and enforce good practices when using XState library.

npm version code style: prettier PRs Welcome

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-xstate:

$ npm install eslint-plugin-xstate --save-dev

Usage

Add xstate to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": ["xstate"]
}

Then configure the rules you want to use under the rules section.

{
  "rules": {
    "xstate/spawn-usage": "error",
    "xstate/no-infinite-loop": "error",
    "xstate/no-imperative-action": "error",
    "xstate/no-ondone-outside-compound-state": "error",
    "xstate/invoke-usage": "error",
    "xstate/entry-exit-action": "error",
    "xstate/prefer-always": "error",
    "xstate/no-misplaced-on-transition": "error",
    "xstate/no-invalid-transition-props": "error",
    "xstate/no-invalid-state-props": "error",
    "xstate/no-async-guard": "error",
    "xstate/event-names": ["warn", "macroCase"],
    "xstate/state-names": ["warn", "camelCase"],
    "xstate/no-inline-implementation": "warn",
    "xstate/no-auto-forward": "warn"
  }
}

Shareable Configurations

This plugin exports a recommended configuration which checks for common mistakes. To enable this configuration use the extends property in your .eslintrc.js config file:

{
  "extends": ["plugin:xstate/recommended"]
}

There is also an all configuration which includes every available rule. It enforces both correct usage and best XState practices.

{
  "extends": ["plugin:xstate/all"]
}

Supported Rules

Possible Errors

RuleDescriptionRecommended
spawn-usageEnforce correct usage of spawn:heavy_check_mark:
no-infinite-loopDetect infinite loops with eventless transitions:heavy_check_mark:
no-imperative-actionForbid using action creators imperatively:heavy_check_mark:
no-ondone-outside-compound-stateForbid onDone transitions on atomic, history and final nodes:heavy_check_mark:
invoke-usageEnforce correct invocation of services:heavy_check_mark:
entry-exit-actionForbid invalid declarations of entry/exit actions:heavy_check_mark:
no-misplaced-on-transitionForbid invalid declarations of on transitions:heavy_check_mark:
no-invalid-transition-propsForbid invalid properties in transition declarations:heavy_check_mark:
no-invalid-state-propsForbid invalid properties in state node declarations:heavy_check_mark:
no-async-guardForbid asynchronous guard functions:heavy_check_mark:

Best Practices

RuleDescriptionRecommended
no-inline-implementationSuggest refactoring guards, actions and services into machine options
prefer-alwaysSuggest using the always syntax for transient (eventless) transitions:heavy_check_mark:
no-auto-forwardForbid auto-forwarding events to invoked services or spawned actors

Stylistic Issues

RuleDescriptionRecommended
event-namesSuggest consistent formatting of event names
state-namesSuggest consistent formatting of state names and prevent confusing names

Keywords

FAQs

Package last updated on 04 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc