Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

Location:
trip-planner-front/node_modules/@types/eslint
Files:
1 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/@types/eslint/README.md

    r59329aa re29cc2e  
    99
    1010### Additional Details
    11  * Last updated: Fri, 08 Oct 2021 17:01:24 GMT
     11 * Last updated: Wed, 17 Nov 2021 21:01:26 GMT
    1212 * Dependencies: [@types/json-schema](https://npmjs.com/package/@types/json-schema), [@types/estree](https://npmjs.com/package/@types/estree)
    1313 * Global values: none
  • trip-planner-front/node_modules/@types/eslint/index.d.ts

    r59329aa re29cc2e  
    1 // Type definitions for eslint 7.28
     1// Type definitions for eslint 8.2
    22// Project: https://eslint.org
    33// Definitions by: Pierre-Marie Dartus <https://github.com/pmdartus>
     
    1010
    1111/// <reference path="helpers.d.ts" />
    12 /// <reference path="lib/rules/index.d.ts" />
    1312
    1413import { JSONSchema4 } from "json-schema";
     
    718717
    719718    interface ParserOptions {
    720         ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | undefined;
     719        ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | "latest" |undefined;
    721720        sourceType?: "script" | "module" | undefined;
    722721        ecmaFeatures?: {
     
    818817    lintText(code: string, options?: { filePath?: string | undefined; warnIgnored?: boolean | undefined }): Promise<ESLint.LintResult[]>;
    819818
     819    getRulesMetaForResults(results: ESLint.LintResult[]): ESLint.LintResultData['rulesMeta'];
     820
    820821    calculateConfigForFile(filePath: string): Promise<any>;
    821822
     
    860861        messages: Linter.LintMessage[];
    861862        errorCount: number;
     863        fatalErrorCount: number;
    862864        warningCount: number;
    863865        fixableErrorCount: number;
     
    885887    // Docs reference the type by this name
    886888    type EditInfo = Rule.Fix;
    887 }
    888 
    889 //#endregion
    890 
    891 //#region CLIEngine
    892 
    893 /** @deprecated Deprecated in favor of `ESLint` */
    894 export class CLIEngine {
    895     static version: string;
    896 
    897     constructor(options: CLIEngine.Options);
    898 
    899     executeOnFiles(patterns: string[]): CLIEngine.LintReport;
    900 
    901     resolveFileGlobPatterns(patterns: string[]): string[];
    902 
    903     getConfigForFile(filePath: string): Linter.Config;
    904 
    905     executeOnText(text: string, filename?: string): CLIEngine.LintReport;
    906 
    907     addPlugin(name: string, pluginObject: any): void;
    908 
    909     isPathIgnored(filePath: string): boolean;
    910 
    911     getFormatter(format?: string): CLIEngine.Formatter;
    912 
    913     getRules(): Map<string, Rule.RuleModule>;
    914 
    915     static getErrorResults(results: CLIEngine.LintResult[]): CLIEngine.LintResult[];
    916 
    917     static getFormatter(format?: string): CLIEngine.Formatter;
    918 
    919     static outputFixes(report: CLIEngine.LintReport): void;
    920 }
    921 
    922 /** @deprecated Deprecated in favor of `ESLint` */
    923 export namespace CLIEngine {
    924     class Options {
    925         allowInlineConfig?: boolean | undefined;
    926         baseConfig?: false | { [name: string]: any } | undefined;
    927         cache?: boolean | undefined;
    928         cacheFile?: string | undefined;
    929         cacheLocation?: string | undefined;
    930         cacheStrategy?: "content" | "metadata" | undefined;
    931         configFile?: string | undefined;
    932         cwd?: string | undefined;
    933         envs?: string[] | undefined;
    934         errorOnUnmatchedPattern?: boolean | undefined;
    935         extensions?: string[] | undefined;
    936         fix?: boolean | undefined;
    937         globals?: string[] | undefined;
    938         ignore?: boolean | undefined;
    939         ignorePath?: string | undefined;
    940         ignorePattern?: string | string[] | undefined;
    941         useEslintrc?: boolean | undefined;
    942         parser?: string | undefined;
    943         parserOptions?: Linter.ParserOptions | undefined;
    944         plugins?: string[] | undefined;
    945         resolvePluginsRelativeTo?: string | undefined;
    946         rules?: {
    947             [name: string]: Linter.RuleLevel | Linter.RuleLevelAndOptions;
    948         } | undefined;
    949         rulePaths?: string[] | undefined;
    950         reportUnusedDisableDirectives?: boolean | undefined;
    951     }
    952 
    953     type LintResult = ESLint.LintResult;
    954 
    955     type LintResultData = ESLint.LintResultData;
    956 
    957     interface LintReport {
    958         results: LintResult[];
    959         errorCount: number;
    960         warningCount: number;
    961         fixableErrorCount: number;
    962         fixableWarningCount: number;
    963         usedDeprecatedRules: DeprecatedRuleUse[];
    964     }
    965 
    966     type DeprecatedRuleUse = ESLint.DeprecatedRuleUse;
    967 
    968     type Formatter = (results: LintResult[], data?: LintResultData) => string;
    969889}
    970890
     
    984904        },
    985905    ): void;
     906
     907    static only(
     908        item: string | RuleTester.ValidTestCase | RuleTester.InvalidTestCase,
     909    ): RuleTester.ValidTestCase | RuleTester.InvalidTestCase;
    986910}
    987911
     
    991915        options?: any;
    992916        filename?: string | undefined;
     917        only?: boolean;
    993918        parserOptions?: Linter.ParserOptions | undefined;
    994919        settings?: { [name: string]: any } | undefined;
  • trip-planner-front/node_modules/@types/eslint/package.json

    r59329aa re29cc2e  
    11{
    2   "_args": [
    3     [
    4       "@types/eslint@7.28.1",
    5       "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front"
    6     ]
    7   ],
    8   "_development": true,
    9   "_from": "@types/eslint@7.28.1",
    10   "_id": "@types/eslint@7.28.1",
     2  "_from": "@types/eslint@*",
     3  "_id": "@types/eslint@8.2.0",
    114  "_inBundle": false,
    12   "_integrity": "sha512-XhZKznR3i/W5dXqUhgU9fFdJekufbeBd5DALmkuXoeFcjbQcPk+2cL+WLHf6Q81HWAnM2vrslIHpGVyCAviRwg==",
     5  "_integrity": "sha512-74hbvsnc+7TEDa1z5YLSe4/q8hGYB3USNvCuzHUJrjPV6hXaq8IXcngCrHkuvFt0+8rFz7xYXrHgNayIX0UZvQ==",
    136  "_location": "/@types/eslint",
    147  "_phantomChildren": {},
    158  "_requested": {
    16     "type": "version",
     9    "type": "range",
    1710    "registry": true,
    18     "raw": "@types/eslint@7.28.1",
     11    "raw": "@types/eslint@*",
    1912    "name": "@types/eslint",
    2013    "escapedName": "@types%2feslint",
    2114    "scope": "@types",
    22     "rawSpec": "7.28.1",
     15    "rawSpec": "*",
    2316    "saveSpec": null,
    24     "fetchSpec": "7.28.1"
     17    "fetchSpec": "*"
    2518  },
    2619  "_requiredBy": [
    2720    "/@types/eslint-scope"
    2821  ],
    29   "_resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.1.tgz",
    30   "_spec": "7.28.1",
    31   "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front",
     22  "_resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.0.tgz",
     23  "_shasum": "afd0519223c29c347087542cbaee2fedc0873b16",
     24  "_spec": "@types/eslint@*",
     25  "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\@types\\eslint-scope",
    3226  "bugs": {
    3327    "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
    3428  },
     29  "bundleDependencies": false,
    3530  "contributors": [
    3631    {
     
    6358    "@types/json-schema": "*"
    6459  },
     60  "deprecated": false,
    6561  "description": "TypeScript definitions for eslint",
     62  "exports": {
     63    ".": {
     64      "types": "./index.d.ts"
     65    },
     66    "./use-at-your-own-risk": {
     67      "types": "./use-at-your-own-risk.d.ts"
     68    },
     69    "./rules": {
     70      "types": "./rules/index.d.ts"
     71    }
     72  },
    6673  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint",
    6774  "license": "MIT",
     
    7683  "typeScriptVersion": "3.7",
    7784  "types": "index.d.ts",
    78   "typesPublisherContentHash": "ead3341b417b1fe8a2825d96ddb954f3dad2633c5eb166e057c130a2c7db3605",
    79   "version": "7.28.1"
     85  "typesPublisherContentHash": "75f8630ee832c7873360b05069ae241180c3b9cfcda4af43a1647926b09232ac",
     86  "version": "8.2.0"
    8087}
Note: See TracChangeset for help on using the changeset viewer.