Socket
Socket
Sign inDemoInstall

@typescript-eslint/experimental-utils

Package Overview
Dependencies
Maintainers
1
Versions
2612
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typescript-eslint/experimental-utils - npm Package Compare versions

Comparing version 1.9.1-alpha.4 to 1.9.1-alpha.5

dist/ts-eslint/CLIEngine.d.ts

1

dist/ts-eslint/index.js

@@ -7,3 +7,4 @@ "use strict";

__export(require("./Linter"));
__export(require("./RuleTester"));
__export(require("./SourceCode"));
//# sourceMappingURL=index.js.map

22

dist/ts-eslint/Linter.d.ts
import { TSESTree, ParserServices } from '@typescript-eslint/typescript-estree';
import { ParserOptions as TSParserOptions } from './ParserOptions';
import { RuleModule, RuleFix } from './Rule';
import { Scope } from './Scope';
import { SourceCode } from './SourceCode';
declare class Linter {
interface Linter {
version: string;

@@ -12,3 +13,6 @@ verify(code: SourceCode | string, config: Linter.Config, filename?: string): Linter.LintMessage[];

getSourceCode(): SourceCode;
defineRule<TMessageIds extends string, TOptions extends readonly any[]>(name: string, rule: RuleModule<TMessageIds, TOptions>): void;
defineRule<TMessageIds extends string, TOptions extends readonly any[]>(name: string, rule: {
meta?: RuleModule<TMessageIds, TOptions>['meta'];
create: RuleModule<TMessageIds, TOptions>['create'];
}): void;
defineRules<TMessageIds extends string, TOptions extends readonly any[]>(rules: Record<string, RuleModule<TMessageIds, TOptions>>): void;

@@ -40,14 +44,3 @@ getRules<TMessageIds extends string, TOptions extends readonly any[]>(): Map<string, RuleModule<TMessageIds, TOptions>>;

}
interface ParserOptions {
ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 2015 | 2016 | 2017 | 2018;
sourceType?: 'script' | 'module';
ecmaFeatures?: {
globalReturn?: boolean;
impliedStrict?: boolean;
jsx?: boolean;
experimentalObjectRestSpread?: boolean;
[key: string]: any;
};
[key: string]: any;
}
type ParserOptions = TSParserOptions;
interface LintOptions {

@@ -93,3 +86,4 @@ filename?: string;

}
declare const Linter: new () => Linter;
export { Linter };
//# sourceMappingURL=Linter.d.ts.map
"use strict";
/* eslint-disable @typescript-eslint/no-namespace, no-redeclare */
Object.defineProperty(exports, "__esModule", { value: true });
const eslint_1 = require("eslint");
const Linter = eslint_1.Linter;
exports.Linter = Linter;
//# sourceMappingURL=Linter.js.map

@@ -7,3 +7,3 @@ export interface ParserOptions {

sourceType?: 'script' | 'module';
ecmaVersion?: number;
ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 2015 | 2016 | 2017 | 2018;
ecmaFeatures?: {

@@ -10,0 +10,0 @@ globalReturn?: boolean;

@@ -81,3 +81,3 @@ import { ParserServices, TSESTree } from '@typescript-eslint/typescript-estree';

declare type ReportFixFunction = (fixer: RuleFixer) => null | RuleFix | RuleFix[] | IterableIterator<RuleFix>;
interface ReportDescriptor<TMessageIds extends string> {
interface ReportDescriptorBase<TMessageIds extends string> {
/**

@@ -95,2 +95,4 @@ * The parameters for the message string associated with `messageId`.

messageId: TMessageIds;
}
interface ReportDescriptorNodeOptionalLoc {
/**

@@ -105,4 +107,11 @@ * The Node or AST Token which the report is being attached to

}
interface RuleContext<TMessageIds extends string, TOptions extends Readonly<any[]>> {
interface ReportDescriptorLocOnly {
/**
* An override of the location of the report
*/
loc: TSESTree.SourceLocation | TSESTree.LineAndColumnData;
}
declare type ReportDescriptor<TMessageIds extends string> = ReportDescriptorBase<TMessageIds> & (ReportDescriptorNodeOptionalLoc | ReportDescriptorLocOnly);
interface RuleContext<TMessageIds extends string, TOptions extends readonly any[]> {
/**
* The rule ID.

@@ -319,3 +328,3 @@ */

}
interface RuleModule<TMessageIds extends string, TOptions extends Readonly<any[]>, TRuleListener extends RuleListener = RuleListener> {
interface RuleModule<TMessageIds extends string, TOptions extends readonly any[], TRuleListener extends RuleListener = RuleListener> {
/**

@@ -322,0 +331,0 @@ * Metadata about the rule

@@ -41,7 +41,7 @@ import { AST_NODE_TYPES, AST_TOKEN_TYPES } from '@typescript-eslint/typescript-estree';

}
interface RuleTester {
new (config?: RuleTesterConfig): RuleTester;
declare interface RuleTester {
run<TMessageIds extends string, TOptions extends Readonly<any[]>>(name: string, rule: RuleModule<TMessageIds, TOptions>, tests: RunTests<TMessageIds, TOptions>): void;
}
declare const RuleTester: new (config?: RuleTesterConfig | undefined) => RuleTester;
export { InvalidTestCase, RuleTester, RuleTesterConfig, RunTests, TestCaseError, ValidTestCase, };
//# sourceMappingURL=RuleTester.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const eslint_1 = require("eslint");
const RuleTester = eslint_1.RuleTester;
exports.RuleTester = RuleTester;
//# sourceMappingURL=RuleTester.js.map
import { ParserServices, TSESTree } from '@typescript-eslint/typescript-estree';
import { Scope } from './Scope';
declare namespace SourceCode {
interface Program extends TSESTree.Program {
comments: TSESTree.Comment[];
tokens: TSESTree.Token[];
}
interface Config {
text: string;
ast: Program;
parserServices?: ParserServices;
scopeManager?: Scope.ScopeManager;
visitorKeys?: VisitorKeys;
}
interface VisitorKeys {
[nodeType: string]: string[];
}
type FilterPredicate = (tokenOrComment: TSESTree.Token | TSESTree.Comment) => boolean;
type CursorWithSkipOptions = number | FilterPredicate | {
includeComments?: boolean;
filter?: FilterPredicate;
skip?: number;
};
type CursorWithCountOptions = number | FilterPredicate | {
includeComments?: boolean;
filter?: FilterPredicate;
count?: number;
};
}
declare class SourceCode {
declare interface SourceCode {
text: string;

@@ -39,5 +12,2 @@ ast: SourceCode.Program;

tokensAndComments: (TSESTree.Comment | TSESTree.Token)[];
constructor(text: string, ast: SourceCode.Program);
constructor(config: SourceCode.Config);
static splitLines(text: string): string[];
getText(node?: TSESTree.Node, beforeCount?: number, afterCount?: number): string;

@@ -78,3 +48,35 @@ getLines(): string[];

}
declare namespace SourceCode {
interface Program extends TSESTree.Program {
comments: TSESTree.Comment[];
tokens: TSESTree.Token[];
}
interface Config {
text: string;
ast: Program;
parserServices?: ParserServices;
scopeManager?: Scope.ScopeManager;
visitorKeys?: VisitorKeys;
}
interface VisitorKeys {
[nodeType: string]: string[];
}
type FilterPredicate = (tokenOrComment: TSESTree.Token | TSESTree.Comment) => boolean;
type CursorWithSkipOptions = number | FilterPredicate | {
includeComments?: boolean;
filter?: FilterPredicate;
skip?: number;
};
type CursorWithCountOptions = number | FilterPredicate | {
includeComments?: boolean;
filter?: FilterPredicate;
count?: number;
};
}
declare const SourceCode: {
new (text: string, ast: SourceCode.Program): SourceCode;
new (config: SourceCode.Config): SourceCode;
splitLines(text: string): string[];
};
export { SourceCode };
//# sourceMappingURL=SourceCode.d.ts.map
"use strict";
/* eslint-disable @typescript-eslint/no-namespace, no-redeclare */
Object.defineProperty(exports, "__esModule", { value: true });
const eslint_1 = require("eslint");
const SourceCode = eslint_1.SourceCode;
exports.SourceCode = SourceCode;
//# sourceMappingURL=SourceCode.js.map
{
"name": "@typescript-eslint/experimental-utils",
"version": "1.9.1-alpha.4+67537b8",
"version": "1.9.1-alpha.5+370ac72",
"description": "(Experimental) Utilities for working with TypeScript + ESLint together",

@@ -34,8 +34,9 @@ "keywords": [

"dependencies": {
"@typescript-eslint/typescript-estree": "1.9.1-alpha.4+67537b8"
"@typescript-eslint/typescript-estree": "1.9.1-alpha.5+370ac72"
},
"peerDependencies": {
"eslint": "*",
"typescript": "*"
},
"gitHead": "67537b863a8a98383796abb404224fdfc1c7b996"
"gitHead": "370ac729689905384adb20f92240264660fcc9bc"
}

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

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

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