eslint-plugin-n
Advanced tools
Comparing version 17.10.0 to 17.10.1
{ | ||
"name": "eslint-plugin-n", | ||
"version": "17.10.0", | ||
"version": "17.10.1", | ||
"description": "Additional ESLint's rules for Node.js", | ||
@@ -54,3 +54,3 @@ "engines": { | ||
"type-fest": "^4.21.0", | ||
"typescript": "^5.5.3" | ||
"typescript": "~5.4" | ||
}, | ||
@@ -57,0 +57,0 @@ "scripts": { |
@@ -16,4 +16,27 @@ export = plugin; | ||
// @ts-ignore | ||
declare const plugin: import("eslint").ESLint.Plugin & { | ||
declare const plugin: import('eslint').ESLint.Plugin & { | ||
configs: Configs; | ||
}; | ||
type Configs = { | ||
// @ts-ignore | ||
'recommended-module': import('eslint').ESLint.ConfigData; | ||
// @ts-ignore | ||
'recommended-script': import('eslint').ESLint.ConfigData; | ||
// @ts-ignore | ||
'recommended': import('eslint').ESLint.ConfigData; | ||
// @ts-ignore | ||
'flat/recommended-module': import('eslint').Linter.FlatConfig; | ||
// @ts-ignore | ||
'flat/recommended-script': import('eslint').Linter.FlatConfig; | ||
// @ts-ignore | ||
'flat/recommended': import('eslint').Linter.FlatConfig; | ||
// @ts-ignore | ||
'flat/mixed-esm-and-cjs': import('eslint').Linter.FlatConfig[]; | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
436436
11560