@sherifforg/types
Advanced tools
+1
-1
| { | ||
| "name": "@sherifforg/types", | ||
| "description": "Sheriff types.", | ||
| "version": "3.1.1", | ||
| "version": "3.1.2", | ||
| "license": "MIT", | ||
@@ -6,0 +6,0 @@ "type": "module", |
+10
-7
@@ -61,27 +61,30 @@ export interface NoRestrictedSyntaxSlice { | ||
| export interface SheriffSettings { | ||
| export interface SheriffConfigurablePlugins { | ||
| /** | ||
| * React support. | ||
| */ | ||
| react?: boolean; | ||
| react: boolean; | ||
| /** | ||
| * Lodash support. | ||
| */ | ||
| lodash?: boolean; | ||
| lodash: boolean; | ||
| /** | ||
| * Nextjs support. | ||
| */ | ||
| next?: boolean; | ||
| next: boolean; | ||
| /** | ||
| * Playwright support. | ||
| */ | ||
| playwright?: boolean; | ||
| playwright: boolean; | ||
| /** | ||
| * Jest support. Select this or vitest, not both. | ||
| */ | ||
| jest?: boolean; | ||
| jest: boolean; | ||
| /** | ||
| * Vitest support. Select this or jest, not both. | ||
| */ | ||
| vitest?: boolean; | ||
| vitest: boolean; | ||
| } | ||
| export interface SheriffSettings extends Partial<SheriffConfigurablePlugins> { | ||
| /** | ||
@@ -88,0 +91,0 @@ * This parameter allows you to override the paths for some Sheriff settings. |
6023
1.47%118
1.72%