Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/c-ehrlich/eslint-plugin-use-server

Disallows top level "use server"
https://github.com/c-ehrlich/eslint-plugin-use-server

eslint eslint-plug nextjs use-server

Last synced: 5 days ago
JSON representation

Disallows top level "use server"

Awesome Lists containing this project

README

        

# @c-ehrlich/eslint-plugin-use-server

Disallows top level `"use server"`

## Instructions

Add the following to your `eslintrc`:

```js
{
plugins: [
// other plugins...
"@c-ehrlich/eslint-plugin-use-server",
],
rules: {
// other rules...
"@c-ehrlich/use-server/no-top-level-use-server": "error",
}
}