Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
eslint-plugin-xstate
Advanced tools
ESLint plugin to check for common mistakes and enforce good practices when using XState library.
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-xstate
:
$ npm install eslint-plugin-xstate --save-dev
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"
}
}
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"]
}
Rule | Description | Recommended |
---|---|---|
spawn-usage | Enforce correct usage of spawn | :heavy_check_mark: |
no-infinite-loop | Detect infinite loops with eventless transitions | :heavy_check_mark: |
no-imperative-action | Forbid using action creators imperatively | :heavy_check_mark: |
no-ondone-outside-compound-state | Forbid onDone transitions on atomic , history and final nodes | :heavy_check_mark: |
invoke-usage | Enforce correct invocation of services | :heavy_check_mark: |
entry-exit-action | Forbid invalid declarations of entry/exit actions | :heavy_check_mark: |
no-misplaced-on-transition | Forbid invalid declarations of on transitions | :heavy_check_mark: |
no-invalid-transition-props | Forbid invalid properties in transition declarations | :heavy_check_mark: |
no-invalid-state-props | Forbid invalid properties in state node declarations | :heavy_check_mark: |
no-async-guard | Forbid asynchronous guard functions | :heavy_check_mark: |
Rule | Description | Recommended |
---|---|---|
no-inline-implementation | Suggest refactoring guards, actions and services into machine options | |
prefer-always | Suggest using the always syntax for transient (eventless) transitions | :heavy_check_mark: |
no-auto-forward | Forbid auto-forwarding events to invoked services or spawned actors |
Rule | Description | Recommended |
---|---|---|
event-names | Suggest consistent formatting of event names | |
state-names | Suggest consistent formatting of state names and prevent confusing names |
FAQs
ESLint rules for XState
The npm package eslint-plugin-xstate receives a total of 5,659 weekly downloads. As such, eslint-plugin-xstate popularity was classified as popular.
We found that eslint-plugin-xstate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.