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

@eslint-types/typescript-eslint

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eslint-types/typescript-eslint - npm Package Compare versions

Comparing version 6.18.1 to 6.19.1

rules/no-array-delete.d.ts

4

package.json
{
"name": "@eslint-types/typescript-eslint",
"version": "6.18.1",
"version": "6.19.1",
"description": "TypeScript definitions for eslint-define-config",

@@ -23,3 +23,3 @@ "homepage": "https://github.com/eslint-types/define-config-plugin-types/tree/main/types/typescript-eslint",

"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.18.1"
"@typescript-eslint/eslint-plugin": "6.19.1"
},

@@ -26,0 +26,0 @@ "exports": {

@@ -37,2 +37,3 @@ import type { AdjacentOverloadSignaturesRuleOptions } from './rules/adjacent-overload-signatures';

import type { NoArrayConstructorRuleOptions } from './rules/no-array-constructor';
import type { NoArrayDeleteRuleOptions } from './rules/no-array-delete';
import type { NoBaseToStringRuleOptions } from './rules/no-base-to-string';

@@ -113,2 +114,3 @@ import type { NoConfusingNonNullAssertionRuleOptions } from './rules/no-confusing-non-null-assertion';

import type { PreferOptionalChainRuleOptions } from './rules/prefer-optional-chain';
import type { PreferPromiseRejectErrorsRuleOptions } from './rules/prefer-promise-reject-errors';
import type { PreferReadonlyRuleOptions } from './rules/prefer-readonly';

@@ -379,2 +381,8 @@ import type { PreferReadonlyParameterTypesRuleOptions } from './rules/prefer-readonly-parameter-types';

/**
* Disallow using the `delete` operator on array values
*
* @see [no-array-delete](https://typescript-eslint.io/rules/no-array-delete)
*/
'@typescript-eslint/no-array-delete': NoArrayDeleteRuleOptions;
/**
* Require `.toString()` to only be called on objects which provide useful information when stringified

@@ -830,2 +838,8 @@ *

/**
* Require using Error objects as Promise rejection reasons
*
* @see [prefer-promise-reject-errors](https://typescript-eslint.io/rules/prefer-promise-reject-errors)
*/
'@typescript-eslint/prefer-promise-reject-errors': PreferPromiseRejectErrorsRuleOptions;
/**
* Require private members to be marked as `readonly` if they're never modified outside of the constructor

@@ -832,0 +846,0 @@ *

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