Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 0da557d

Browse files
committed
Update versions
1 parent 5e91c79 commit 0da557d

File tree

5 files changed

+25
-127
lines changed

5 files changed

+25
-127
lines changed

pnpm-lock.yaml

Lines changed: 13 additions & 123 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

types/jsdoc/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-types/jsdoc",
3-
"version": "46.8.2-1",
3+
"version": "46.9.0",
44
"description": "TypeScript definitions for eslint-define-config",
55
"homepage": "https://github.com/eslint-types/define-config-plugin-types/tree/main/types/jsdoc",
66
"license": "MIT",
@@ -21,7 +21,7 @@
2121
"scripts": {},
2222
"dependencies": {},
2323
"devDependencies": {
24-
"eslint-plugin-jsdoc": "46.8.2"
24+
"eslint-plugin-jsdoc": "46.9.0"
2525
},
2626
"exports": {
2727
".": {

types/typescript-eslint/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint-types/typescript-eslint",
3-
"version": "6.9.1",
3+
"version": "6.11.0",
44
"description": "TypeScript definitions for eslint-define-config",
55
"homepage": "https://github.com/eslint-types/define-config-plugin-types/tree/main/types/typescript-eslint",
66
"license": "MIT",
@@ -21,7 +21,7 @@
2121
"scripts": {},
2222
"dependencies": {},
2323
"devDependencies": {
24-
"@typescript-eslint/eslint-plugin": "6.9.1"
24+
"@typescript-eslint/eslint-plugin": "6.11.0"
2525
},
2626
"exports": {
2727
".": {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export type NoUnsafeUnaryMinusRuleOptions = [];

types/typescript-eslint/types.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ import type { NoUnsafeDeclarationMergingRuleOptions } from './rules/no-unsafe-de
8787
import type { NoUnsafeEnumComparisonRuleOptions } from './rules/no-unsafe-enum-comparison';
8888
import type { NoUnsafeMemberAccessRuleOptions } from './rules/no-unsafe-member-access';
8989
import type { NoUnsafeReturnRuleOptions } from './rules/no-unsafe-return';
90+
import type { NoUnsafeUnaryMinusRuleOptions } from './rules/no-unsafe-unary-minus';
9091
import type { NoUnusedExpressionsRuleOptions } from './rules/no-unused-expressions';
9192
import type { NoUnusedVarsRuleOptions } from './rules/no-unused-vars';
9293
import type { NoUseBeforeDefineRuleOptions } from './rules/no-use-before-define';
@@ -689,6 +690,12 @@ export interface RuleOptions {
689690
* @see [no-unsafe-return](https://typescript-eslint.io/rules/no-unsafe-return)
690691
*/
691692
'@typescript-eslint/no-unsafe-return': NoUnsafeReturnRuleOptions;
693+
/**
694+
* Require unary negation to take a number
695+
*
696+
* @see [no-unsafe-unary-minus](https://typescript-eslint.io/rules/no-unsafe-unary-minus)
697+
*/
698+
'@typescript-eslint/no-unsafe-unary-minus': NoUnsafeUnaryMinusRuleOptions;
692699
/**
693700
* Disallow unused expressions
694701
*

0 commit comments

Comments
 (0)