Socket
Socket
Sign inDemoInstall

@typescript-eslint/utils

Package Overview
Dependencies
Maintainers
2
Versions
2095
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typescript-eslint/utils - npm Package Compare versions

Comparing version 8.0.2-alpha.1 to 8.0.2-alpha.2

11

dist/ts-eslint/Config.d.ts

@@ -13,4 +13,5 @@ import type { Parser as ParserType } from './Parser';

type RulesRecord = Partial<Record<string, RuleEntry>>;
type GlobalVariableOptionBase = 'off' | 'readonly' | 'writable';
type GlobalVariableOption = GlobalVariableOptionBase | boolean;
type GlobalVariableOptionBase = 'off' | 'readonly' | 'writable' | /** @deprecated use `'writable'` */ 'writeable' | /** @deprecated use `'readonly'` */ 'readable';
type GlobalVariableOptionBoolean = /** @deprecated use `'writable'` */ true | /** @deprecated use `'readonly'` */ false;
type GlobalVariableOption = GlobalVariableOptionBase | GlobalVariableOptionBoolean;
interface GlobalsConfig {

@@ -185,3 +186,3 @@ [name: string]: GlobalVariableOption;

*/
ecmaVersion?: EcmaVersion;
ecmaVersion?: EcmaVersion | undefined;
/**

@@ -199,3 +200,3 @@ * An object specifying additional objects that should be added to the global scope during linting.

*/
parser?: Parser;
parser?: Parser | undefined;
/**

@@ -217,3 +218,3 @@ * An object specifying additional options that are passed directly to the parser.

*/
sourceType?: SourceType;
sourceType?: SourceType | undefined;
}

@@ -220,0 +221,0 @@ interface Config {

"use strict";
/* eslint-disable @typescript-eslint/no-namespace */
Object.defineProperty(exports, "__esModule", { value: true });

@@ -4,0 +3,0 @@ exports.ESLint = exports.FlatESLint = exports.LegacyESLint = void 0;

{
"name": "@typescript-eslint/utils",
"version": "8.0.2-alpha.1",
"version": "8.0.2-alpha.2",
"description": "Utilities for working with TypeScript + ESLint together",

@@ -67,5 +67,5 @@ "files": [

"@eslint-community/eslint-utils": "^4.4.0",
"@typescript-eslint/scope-manager": "8.0.2-alpha.1",
"@typescript-eslint/types": "8.0.2-alpha.1",
"@typescript-eslint/typescript-estree": "8.0.2-alpha.1"
"@typescript-eslint/scope-manager": "8.0.2-alpha.2",
"@typescript-eslint/types": "8.0.2-alpha.2",
"@typescript-eslint/typescript-estree": "8.0.2-alpha.2"
},

@@ -72,0 +72,0 @@ "peerDependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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