1.0.0 • Published 7 months ago

eslint-plugin-zod-schema-suffix v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

eslint-plugin-zod-schema-suffix

Eslint plugin checking zod objects are lowercased at the front and suffixed with "Schema"

Installation

Using npm:

$ npm i eslint-plugin-zod-schema-suffix --save-dev

Configuration

In your eslint.config.js, add

export default [
  {
    plugins: ['zod-schema-suffix'],
    rules: {
        'zod-schema-suffix/naming-convention-zod-schema-suffixed-and-lowercase': 'error',
    },
  },
]
1.0.0

7 months ago